| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/webui/extensions/command_handler.h" | 5 #include "chrome/browser/ui/webui/extensions/command_handler.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/values.h" | 8 #include "base/values.h" |
| 9 #include "chrome/browser/extensions/api/commands/command_service.h" | 9 #include "chrome/browser/extensions/api/commands/command_service.h" |
| 10 #include "chrome/browser/extensions/extension_commands_global_registry.h" | 10 #include "chrome/browser/extensions/extension_commands_global_registry.h" |
| 11 #include "chrome/browser/extensions/extension_keybinding_registry.h" | 11 #include "chrome/browser/extensions/extension_keybinding_registry.h" |
| 12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/grit/generated_resources.h" |
| 13 #include "content/public/browser/web_ui.h" | 14 #include "content/public/browser/web_ui.h" |
| 14 #include "content/public/browser/web_ui_data_source.h" | 15 #include "content/public/browser/web_ui_data_source.h" |
| 15 #include "extensions/browser/extension_registry.h" | 16 #include "extensions/browser/extension_registry.h" |
| 16 #include "extensions/browser/extension_system.h" | 17 #include "extensions/browser/extension_system.h" |
| 17 #include "extensions/common/extension_set.h" | 18 #include "extensions/common/extension_set.h" |
| 18 #include "grit/generated_resources.h" | |
| 19 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
| 20 | 20 |
| 21 namespace extensions { | 21 namespace extensions { |
| 22 | 22 |
| 23 CommandHandler::CommandHandler(Profile* profile) | 23 CommandHandler::CommandHandler(Profile* profile) |
| 24 : profile_(profile), | 24 : profile_(profile), |
| 25 extension_registry_observer_(this) { | 25 extension_registry_observer_(this) { |
| 26 } | 26 } |
| 27 | 27 |
| 28 CommandHandler::~CommandHandler() { | 28 CommandHandler::~CommandHandler() { |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 if (!extensions_list->empty()) { | 194 if (!extensions_list->empty()) { |
| 195 extension_dict->Set("commands", extensions_list.release()); | 195 extension_dict->Set("commands", extensions_list.release()); |
| 196 results->Append(extension_dict.release()); | 196 results->Append(extension_dict.release()); |
| 197 } | 197 } |
| 198 } | 198 } |
| 199 | 199 |
| 200 commands->Set("commands", results); | 200 commands->Set("commands", results); |
| 201 } | 201 } |
| 202 | 202 |
| 203 } // namespace extensions | 203 } // namespace extensions |
| OLD | NEW |