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

Unified Diff: chrome/browser/autocomplete/extension_app_provider_unittest.cc

Issue 109013006: Update some uses of UTF conversions in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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
Index: chrome/browser/autocomplete/extension_app_provider_unittest.cc
diff --git a/chrome/browser/autocomplete/extension_app_provider_unittest.cc b/chrome/browser/autocomplete/extension_app_provider_unittest.cc
index 24e8bd737ee55ef66c6748533c6f76cdcdd47364..f40ef75cfe0d2cf9cc6a1dc89cc8a9529b92c829 100644
--- a/chrome/browser/autocomplete/extension_app_provider_unittest.cc
+++ b/chrome/browser/autocomplete/extension_app_provider_unittest.cc
@@ -14,6 +14,8 @@
#include "content/public/test/test_browser_thread.h"
#include "testing/gtest/include/gtest/gtest.h"
+using base::ASCIIToUTF16;
+
class ExtensionAppProviderTest : public testing::Test {
protected:
struct test_data {
@@ -75,7 +77,7 @@ void ExtensionAppProviderTest::SetUp() {
// Populate the InMemoryDatabase.
history::URLRow info(GURL(kExtensionApps[i].launch_url));
- info.set_title(UTF8ToUTF16(kExtensionApps[i].title));
+ info.set_title(base::UTF8ToUTF16(kExtensionApps[i].title));
info.set_typed_count(kExtensionApps[i].typed_count);
url_db->AddURL(info);
}
« no previous file with comments | « chrome/browser/autocomplete/extension_app_provider.cc ('k') | chrome/browser/autocomplete/history_quick_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698