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

Unified Diff: chrome_frame/test/ui_test.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/test_with_web_server.cc ('k') | chrome_frame/test/util_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/ui_test.cc
diff --git a/chrome_frame/test/ui_test.cc b/chrome_frame/test/ui_test.cc
index 6ea0d17b8301da994f5b28081d14a62c68067ade..f23cacdf94ce07921c0afda52bfb375877500f58 100644
--- a/chrome_frame/test/ui_test.cc
+++ b/chrome_frame/test/ui_test.cc
@@ -81,7 +81,7 @@ TEST_P(FullTabUITest, KeyboardInput) {
EXPECT_CALL(ie_mock_, OnLoad(GetParam().invokes_cf(), StrEq(key_event_url)))
.WillOnce(PostKeyMessagesToRenderer(&ie_mock_, input));
- EXPECT_CALL(ie_mock_, OnMessage(StrCaseEq(UTF8ToWide(input)), _, _))
+ EXPECT_CALL(ie_mock_, OnMessage(StrCaseEq(base::UTF8ToWide(input)), _, _))
.WillOnce(CloseBrowserMock(&ie_mock_));
LaunchIEAndNavigate(key_event_url);
@@ -322,7 +322,7 @@ TEST_P(FullTabUITest, ViewSource) {
// Expect notification for view-source window, handle new window event
// and attach a new ie_mock_ to the received web browser
std::wstring view_source_url;
- view_source_url += UTF8ToWide(content::kViewSourceScheme);
+ view_source_url += base::UTF8ToWide(content::kViewSourceScheme);
view_source_url += L":";
view_source_url += GetSimplePageUrl();
std::wstring url_in_new_window = kChromeProtocolPrefix;
@@ -572,7 +572,7 @@ TEST_F(ContextMenuTest, CFViewSource) {
// Expect notification for view-source window, handle new window event
// and attach a new ie_mock_ to the received web browser
std::wstring view_source_url;
- view_source_url += UTF8ToWide(content::kViewSourceScheme);
+ view_source_url += base::UTF8ToWide(content::kViewSourceScheme);
view_source_url += L":";
view_source_url += initial_url;
std::wstring url_in_new_window = kChromeProtocolPrefix;
« no previous file with comments | « chrome_frame/test/test_with_web_server.cc ('k') | chrome_frame/test/util_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698