| 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_);
|
|
|