Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: third_party/re2/patches/fix-implicit-conversion.patch

Issue 10873029: Migrate WebRequestRedirectByRegExAction to use RE2 and roll RE2 to revision 97:401ab4168e8e (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/re2/README.chromium ('k') | third_party/re2/patches/re2-android.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 diff -r e12d4aa8907f re2/dfa.cc 1 diff -r e12d4aa8907f re2/dfa.cc
2 --- a/re2/dfa.cc Wed Jul 25 15:13:19 2012 +0200 2 --- a/re2/dfa.cc Wed Jul 25 15:13:19 2012 +0200
3 +++ b/re2/dfa.cc Wed Jul 25 15:13:47 2012 +0200 3 +++ b/re2/dfa.cc Wed Jul 25 15:13:47 2012 +0200
4 @@ -1736,7 +1736,7 @@ 4 @@ -1778,7 +1780,7 @@
5 return false; 5 return false;
6 } 6 }
7 if (params.start == DeadState) 7 if (params.start == DeadState)
8 - return NULL; 8 - return NULL;
9 + return false; 9 + return false;
10 if (params.start == FullMatchState) { 10 if (params.start == FullMatchState) {
11 if (run_forward == want_earliest_match) 11 if (run_forward == want_earliest_match)
12 *epp = text.begin(); 12 *epp = text.begin();
OLDNEW
« no previous file with comments | « third_party/re2/README.chromium ('k') | third_party/re2/patches/re2-android.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698