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

Unified Diff: chrome/test/chrome_plugin/test_chrome_plugin.cc

Issue 17014: Remove compatibility #defines in string_util.h (Closed)
Patch Set: Created 12 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/navigation_controller_unittest.cc ('k') | net/base/cookie_monster.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chrome_plugin/test_chrome_plugin.cc
diff --git a/chrome/test/chrome_plugin/test_chrome_plugin.cc b/chrome/test/chrome_plugin/test_chrome_plugin.cc
index 734320537ffb09aafd24966304363a6e0f2423fa..9e6d0e0ae44fb7959a5de9ec6b8cfa54c35941c6 100644
--- a/chrome/test/chrome_plugin/test_chrome_plugin.cc
+++ b/chrome/test/chrome_plugin/test_chrome_plugin.cc
@@ -169,8 +169,8 @@ CPError STDCALL CPP_Shutdown() {
}
CPBool STDCALL CPP_ShouldInterceptRequest(CPRequest* request) {
- DCHECK(StrNCaseCmp(request->url, kChromeTestPluginProtocol,
- arraysize(kChromeTestPluginProtocol) - 1) == 0);
+ DCHECK(base::strncasecmp(request->url, kChromeTestPluginProtocol,
+ arraysize(kChromeTestPluginProtocol) - 1) == 0);
return FindPayload(request->url) != NULL;
}
« no previous file with comments | « chrome/browser/navigation_controller_unittest.cc ('k') | net/base/cookie_monster.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698