| 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "ui/shell_dialogs/select_file_dialog.h" | 35 #include "ui/shell_dialogs/select_file_dialog.h" |
| 36 | 36 |
| 37 class Profile; | 37 class Profile; |
| 38 | 38 |
| 39 namespace extensions { | 39 namespace extensions { |
| 40 | 40 |
| 41 class EventRouter; | 41 class EventRouter; |
| 42 class ExtensionError; | 42 class ExtensionError; |
| 43 class ExtensionInfoGenerator; | 43 class ExtensionInfoGenerator; |
| 44 class ExtensionRegistry; | 44 class ExtensionRegistry; |
| 45 class ExtensionSystem; | |
| 46 class ManagementPolicy; | |
| 47 class ProcessManager; | 45 class ProcessManager; |
| 48 class RequirementsChecker; | |
| 49 | 46 |
| 50 namespace api { | 47 namespace api { |
| 51 | 48 |
| 52 class EntryPicker; | |
| 53 class EntryPickerClient; | 49 class EntryPickerClient; |
| 54 | 50 |
| 55 } // namespace api | 51 } // namespace api |
| 56 | 52 |
| 57 class DeveloperPrivateEventRouter : public ExtensionRegistryObserver, | 53 class DeveloperPrivateEventRouter : public ExtensionRegistryObserver, |
| 58 public ErrorConsole::Observer, | 54 public ErrorConsole::Observer, |
| 59 public ProcessManagerObserver, | 55 public ProcessManagerObserver, |
| 60 public AppWindowRegistry::Observer, | 56 public AppWindowRegistry::Observer, |
| 61 public CommandService::Observer, | 57 public CommandService::Observer, |
| 62 public ExtensionActionAPI::Observer, | 58 public ExtensionActionAPI::Observer, |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 protected: | 604 protected: |
| 609 ~DeveloperPrivateUpdateExtensionCommandFunction() override; | 605 ~DeveloperPrivateUpdateExtensionCommandFunction() override; |
| 610 ResponseAction Run() override; | 606 ResponseAction Run() override; |
| 611 }; | 607 }; |
| 612 | 608 |
| 613 } // namespace api | 609 } // namespace api |
| 614 | 610 |
| 615 } // namespace extensions | 611 } // namespace extensions |
| 616 | 612 |
| 617 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API
_H_ | 613 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API
_H_ |
| OLD | NEW |