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

Unified Diff: chrome_frame/test/test_with_web_server.h

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_server.cc ('k') | chrome_frame/test/test_with_web_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/test_with_web_server.h
diff --git a/chrome_frame/test/test_with_web_server.h b/chrome_frame/test/test_with_web_server.h
index 8d417553c8ba7dc8c3aaf51f80d9ab2feaa36849..e909683ebe55994cb72742165fedd24972ed6be8 100644
--- a/chrome_frame/test/test_with_web_server.h
+++ b/chrome_frame/test/test_with_web_server.h
@@ -274,7 +274,7 @@ class SimpleWebServerTest {
std::wstring FormatHttpPath(const wchar_t* document_path) {
return base::StringPrintf(L"http://%ls:%i/%ls",
- ASCIIToWide(server_.host()).c_str(), port_,
+ base::ASCIIToWide(server_.host()).c_str(), port_,
document_path);
}
@@ -314,7 +314,7 @@ class SimpleWebServerTest {
const test_server::Connection* c = (*it);
const test_server::Request& r = c->request();
if (!r.path().empty() &&
- ASCIIToWide(r.path().substr(1)).compare(page) == 0) {
+ base::ASCIIToWide(r.path().substr(1)).compare(page) == 0) {
if (expected_method) {
EXPECT_EQ(expected_method, r.method());
}
« no previous file with comments | « chrome_frame/test/test_server.cc ('k') | chrome_frame/test/test_with_web_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698