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

Unified Diff: chrome_frame/test/header_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/dll_redirector_test.cc ('k') | chrome_frame/test/http_negotiate_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/header_test.cc
diff --git a/chrome_frame/test/header_test.cc b/chrome_frame/test/header_test.cc
index 0e61c84046c2436108b9f790e34371d70deb9b14..815dadc9bd6a2630415eef582f11966277e252d4 100644
--- a/chrome_frame/test/header_test.cc
+++ b/chrome_frame/test/header_test.cc
@@ -22,11 +22,11 @@ class TestData {
}
std::wstring GetPath() const {
- return ASCIIToWide("/" + name_);
+ return base::ASCIIToWide("/" + name_);
}
std::wstring GetUrl(MockWebServer* server_mock) const {
- return server_mock->Resolve(ASCIIToWide(name_));
+ return server_mock->Resolve(base::ASCIIToWide(name_));
}
void ExpectOnServer(MockWebServer* server_mock) const {
« no previous file with comments | « chrome_frame/test/dll_redirector_test.cc ('k') | chrome_frame/test/http_negotiate_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698