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

Unified Diff: chrome/common/extensions/api/omnibox/omnibox_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/api/omnibox/omnibox_handler.cc
diff --git a/chrome/common/extensions/api/omnibox/omnibox_handler.cc b/chrome/common/extensions/api/omnibox/omnibox_handler.cc
index e43a5a6320d798168c71357b2dc9a8025367b932..a934e7096277138b03f221886aa6f1b933be54b4 100644
--- a/chrome/common/extensions/api/omnibox/omnibox_handler.cc
+++ b/chrome/common/extensions/api/omnibox/omnibox_handler.cc
@@ -41,7 +41,7 @@ bool OmniboxHandler::Parse(Extension* extension, base::string16* error) {
&dict) ||
!dict->GetString(kKeyword, &info->keyword) ||
info->keyword.empty()) {
- *error = ASCIIToUTF16(manifest_errors::kInvalidOmniboxKeyword);
+ *error = base::ASCIIToUTF16(manifest_errors::kInvalidOmniboxKeyword);
return false;
}
extension->SetManifestData(manifest_keys::kOmnibox, info.release());

Powered by Google App Engine
This is Rietveld 408576698