Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: libadblockplus-android/jni/Utils.cpp

Issue 29558607: Issue 5572 - fix stringBeginsWith in Util.cpp (Closed) Base URL: github.com:abby-sergz/libadblockplus-android.git
Patch Set: Created Sept. 28, 2017, 10:45 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 return ret; 98 return ret;
99 } 99 }
100 100
101 jstring JniStdStringToJava(JNIEnv* env, std::string str) 101 jstring JniStdStringToJava(JNIEnv* env, std::string str)
102 { 102 {
103 return env->NewStringUTF(str.c_str()); 103 return env->NewStringUTF(str.c_str());
104 } 104 }
105 105
106 bool stringBeginsWith(const std::string& string, const std::string& beginning) 106 bool stringBeginsWith(const std::string& string, const std::string& beginning)
107 { 107 {
108 return string.compare(0, beginning.length(), beginning); 108 return string.compare(0, beginning.length(), beginning) == 0;
sergei 2017/09/28 10:49:38 It was a stupid mistake and it was working sometim
109 } 109 }
110 110
111 jobject NewJniArrayList(JNIEnv* env) 111 jobject NewJniArrayList(JNIEnv* env)
112 { 112 {
113 return env->NewObject(arrayListClass->Get(), arrayListCtor); 113 return env->NewObject(arrayListClass->Get(), arrayListCtor);
114 } 114 }
115 115
116 jmethodID JniGetAddToListMethod(JNIEnv* env, jobject list) 116 jmethodID JniGetAddToListMethod(JNIEnv* env, jobject list)
117 { 117 {
118 JniLocalReference<jclass> clazz(env, env->GetObjectClass(list)); 118 JniLocalReference<jclass> clazz(env, env->GetObjectClass(list));
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 { 184 {
185 return NewJniObject<AdblockPlus::Subscription>( 185 return NewJniObject<AdblockPlus::Subscription>(
186 env, std::move(subscription), subscriptionClass->Get(), subscriptionCtor); 186 env, std::move(subscription), subscriptionClass->Get(), subscriptionCtor);
187 } 187 }
188 188
189 jobject NewJniNotification(JNIEnv* env, AdblockPlus::Notification&& notification ) 189 jobject NewJniNotification(JNIEnv* env, AdblockPlus::Notification&& notification )
190 { 190 {
191 return NewJniObject<AdblockPlus::Notification>( 191 return NewJniObject<AdblockPlus::Notification>(
192 env, std::move(notification), notificationClass->Get(), notificationCtor); 192 env, std::move(notification), notificationClass->Get(), notificationCtor);
193 } 193 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld