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

Unified Diff: chrome/common/extensions/api/system_indicator/system_indicator_handler.cc

Issue 22794012: Rename extension_manifest_keys namespace to extensions::manifest_keys. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 months 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/system_indicator/system_indicator_handler.cc
diff --git a/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc b/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
index 792a2c4faf1963c05be5f4fcecf9cccf757b1842..1636a42888edf724aa5ce3616c2df316429012f4 100644
--- a/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
+++ b/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
@@ -24,7 +24,7 @@ SystemIndicatorHandler::~SystemIndicatorHandler() {
bool SystemIndicatorHandler::Parse(Extension* extension, string16* error) {
const base::DictionaryValue* system_indicator_value = NULL;
if (!extension->manifest()->GetDictionary(
- extension_manifest_keys::kSystemIndicator, &system_indicator_value)) {
+ manifest_keys::kSystemIndicator, &system_indicator_value)) {
*error = ASCIIToUTF16(extension_manifest_errors::kInvalidSystemIndicator);
return false;
}
@@ -45,7 +45,7 @@ bool SystemIndicatorHandler::Parse(Extension* extension, string16* error) {
}
const std::vector<std::string> SystemIndicatorHandler::Keys() const {
- return SingleKey(extension_manifest_keys::kSystemIndicator);
+ return SingleKey(manifest_keys::kSystemIndicator);
}
} // namespace extensions
« no previous file with comments | « chrome/common/extensions/api/storage/storage_schema_manifest_handler.cc ('k') | chrome/common/extensions/background_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698