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

Unified Diff: chrome_frame/test/util_unittests.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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_frame/test/ui_test.cc ('k') | chrome_frame/test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/util_unittests.cc
diff --git a/chrome_frame/test/util_unittests.cc b/chrome_frame/test/util_unittests.cc
index 74e41f9c4f51e5ef0052b7a162d9218cf9d07137..22ceed36f15622dbb616b6614c82689df36c8158 100644
--- a/chrome_frame/test/util_unittests.cc
+++ b/chrome_frame/test/util_unittests.cc
@@ -239,11 +239,11 @@ class MockNavigationConstraints : public NavigationConstraints {
// Matcher which returns true if the URL passed in starts with the prefix
// specified.
MATCHER_P(UrlPathStartsWith, url_prefix, "url starts with prefix") {
- return StartsWith(UTF8ToWide(arg.spec()), url_prefix, false);
+ return StartsWith(base::UTF8ToWide(arg.spec()), url_prefix, false);
}
ACTION_P3(HandleZone, mock, url_prefix, zone) {
- if (StartsWith(UTF8ToWide(arg0.spec()), url_prefix, false))
+ if (StartsWith(base::UTF8ToWide(arg0.spec()), url_prefix, false))
return zone != URLZONE_UNTRUSTED;
return false;
}
« no previous file with comments | « chrome_frame/test/ui_test.cc ('k') | chrome_frame/test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698