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

Unified Diff: chrome_frame/test/reliability/page_load_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/policy_settings_unittest.cc ('k') | chrome_frame/test/test_scrubber.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/reliability/page_load_test.cc
diff --git a/chrome_frame/test/reliability/page_load_test.cc b/chrome_frame/test/reliability/page_load_test.cc
index f93898c4bdf2d21c8ffba47db304ef329fd52697..6f14e76905b206d2ec4640fa8fba5cce8a8105cc 100644
--- a/chrome_frame/test/reliability/page_load_test.cc
+++ b/chrome_frame/test/reliability/page_load_test.cc
@@ -197,7 +197,7 @@ class PageLoadTest : public testing::Test {
test_log << (time_now.ToDoubleT() - time_start) << std::endl;
bool is_chrome_frame_navigation =
- StartsWith(UTF8ToWide(url.spec()), kChromeProtocolPrefix, true);
+ StartsWith(base::UTF8ToWide(url.spec()), kChromeProtocolPrefix, true);
CComObjectStack<chrome_frame_test::IEEventSink> ie_event_sink;
MockLoadListener load_listener;
@@ -221,7 +221,7 @@ class PageLoadTest : public testing::Test {
// Attach the sink and navigate.
ie_event_sink.set_listener(&load_listener);
ie_event_sink.Attach(web_browser2);
- hr = ie_event_sink.Navigate(UTF8ToWide(url.spec()));
+ hr = ie_event_sink.Navigate(base::UTF8ToWide(url.spec()));
if (SUCCEEDED(hr)) {
message_loop.RunFor(base::TimeDelta::FromSeconds(g_timeout_seconds));
if (!message_loop.WasTimedOut())
@@ -317,7 +317,7 @@ class PageLoadTest : public testing::Test {
// Every 3rd URL goes into the host browser.
if (line_index % 3 != 0) {
std::string actual_url;
- actual_url = WideToUTF8(kChromeProtocolPrefix);
+ actual_url = base::WideToUTF8(kChromeProtocolPrefix);
actual_url += url_str;
url_str = actual_url;
}
« no previous file with comments | « chrome_frame/test/policy_settings_unittest.cc ('k') | chrome_frame/test/test_scrubber.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698