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

Unified Diff: chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc

Issue 93793010: Update uses of UTF conversions in chrome/common 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
Index: chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
diff --git a/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc b/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
index 844c9818245b2e8760ed556e7503b4cd001bc4db..33d4731738b860ef7e77a93334621db0f680d4a3 100644
--- a/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
+++ b/chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc
@@ -246,7 +246,8 @@ bool SettingsOverridesHandler::Parse(Extension* extension,
info->startup_pages = ParseStartupPage(*settings, error);
if (!info->bookmarks_ui && !info->homepage &&
!info->search_engine && info->startup_pages.empty()) {
- *error = ASCIIToUTF16(manifest_errors::kInvalidEmptySettingsOverrides);
+ *error =
+ base::ASCIIToUTF16(manifest_errors::kInvalidEmptySettingsOverrides);
return false;
}
info->manifest_permission.reset(new ManifestPermissionImpl(

Powered by Google App Engine
This is Rietveld 408576698