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

Unified Diff: chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.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/minimum_chrome_version_checker.cc
diff --git a/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc b/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc
index e9d8cee3b1c1132a97c57a33b5a81db0e366527a..8f63db6fb744374c57c37b83f73d5c6827cab87f 100644
--- a/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc
+++ b/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc
@@ -29,13 +29,13 @@ bool MinimumChromeVersionChecker::Parse(Extension* extension,
std::string minimum_version_string;
if (!extension->manifest()->GetString(keys::kMinimumChromeVersion,
&minimum_version_string)) {
- *error = ASCIIToUTF16(errors::kInvalidMinimumChromeVersion);
+ *error = base::ASCIIToUTF16(errors::kInvalidMinimumChromeVersion);
return false;
}
base::Version minimum_version(minimum_version_string);
if (!minimum_version.IsValid()) {
- *error = ASCIIToUTF16(errors::kInvalidMinimumChromeVersion);
+ *error = base::ASCIIToUTF16(errors::kInvalidMinimumChromeVersion);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698