| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_SHELL_COMMON_SHELL_EXTENSIONS_CLIENT_H_ | 5 #ifndef EXTENSIONS_SHELL_COMMON_SHELL_EXTENSIONS_CLIENT_H_ |
| 6 #define EXTENSIONS_SHELL_COMMON_SHELL_EXTENSIONS_CLIENT_H_ | 6 #define EXTENSIONS_SHELL_COMMON_SHELL_EXTENSIONS_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 10 #include "extensions/common/extensions_client.h" | 10 #include "extensions/common/extensions_client.h" |
| 11 #include "extensions/common/permissions/extensions_api_permissions.h" | 11 #include "extensions/common/permissions/extensions_api_permissions.h" |
| 12 | 12 |
| 13 namespace extensions { | 13 namespace extensions { |
| 14 | 14 |
| 15 // The app_shell implementation of ExtensionsClient. | 15 // The app_shell implementation of ExtensionsClient. |
| 16 class ShellExtensionsClient : public ExtensionsClient { | 16 class ShellExtensionsClient : public ExtensionsClient { |
| 17 public: | 17 public: |
| 18 ShellExtensionsClient(); | 18 ShellExtensionsClient(); |
| 19 ~ShellExtensionsClient() override; | 19 ~ShellExtensionsClient() override; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 49 const ExtensionsAPIPermissions extensions_api_permissions_; | 49 const ExtensionsAPIPermissions extensions_api_permissions_; |
| 50 | 50 |
| 51 ScriptingWhitelist scripting_whitelist_; | 51 ScriptingWhitelist scripting_whitelist_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsClient); | 53 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsClient); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace extensions | 56 } // namespace extensions |
| 57 | 57 |
| 58 #endif // EXTENSIONS_SHELL_COMMON_SHELL_EXTENSIONS_CLIENT_H_ | 58 #endif // EXTENSIONS_SHELL_COMMON_SHELL_EXTENSIONS_CLIENT_H_ |
| OLD | NEW |