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

Unified Diff: chrome/browser/extensions/api/commands/commands.cc

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/browser/extensions/api/commands/commands.cc
diff --git a/chrome/browser/extensions/api/commands/commands.cc b/chrome/browser/extensions/api/commands/commands.cc
index ebe8bada3c6824b0deeed5efa4ee1d7bb9dcc89d..1bfe0546db27cfe3a048bfbd18c38548857b60d1 100644
--- a/chrome/browser/extensions/api/commands/commands.cc
+++ b/chrome/browser/extensions/api/commands/commands.cc
@@ -10,7 +10,7 @@ namespace {
base::DictionaryValue* CreateCommandValue(
const extensions::Command& command, bool active) {
- DictionaryValue* result = new DictionaryValue();
+ base::DictionaryValue* result = new base::DictionaryValue();
result->SetString("name", command.command_name());
result->SetString("description", command.description());
result->SetString("shortcut",
@@ -22,7 +22,7 @@ base::DictionaryValue* CreateCommandValue(
} // namespace
bool GetAllCommandsFunction::RunImpl() {
- ListValue* command_list = new ListValue();
+ base::ListValue* command_list = new base::ListValue();
extensions::CommandService* command_service =
extensions::CommandService::Get(profile_);

Powered by Google App Engine
This is Rietveld 408576698