| 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 EXTENSIONS_BROWSER_API_MANAGEMENT_MANAGEMENT_API_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_MANAGEMENT_MANAGEMENT_API_H_ |
| 6 #define EXTENSIONS_BROWSER_API_MANAGEMENT_MANAGEMENT_API_H_ | 6 #define EXTENSIONS_BROWSER_API_MANAGEMENT_MANAGEMENT_API_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/scoped_observer.h" | 10 #include "base/scoped_observer.h" |
| 10 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 11 #include "components/keyed_service/core/keyed_service.h" | 12 #include "components/keyed_service/core/keyed_service.h" |
| 12 #include "extensions/browser/api/management/management_api_delegate.h" | 13 #include "extensions/browser/api/management/management_api_delegate.h" |
| 13 #include "extensions/browser/browser_context_keyed_api_factory.h" | 14 #include "extensions/browser/browser_context_keyed_api_factory.h" |
| 14 #include "extensions/browser/event_router.h" | 15 #include "extensions/browser/event_router.h" |
| 15 #include "extensions/browser/extension_event_histogram_value.h" | 16 #include "extensions/browser/extension_event_histogram_value.h" |
| 16 #include "extensions/browser/extension_function.h" | 17 #include "extensions/browser/extension_function.h" |
| 17 #include "extensions/browser/extension_registry_observer.h" | 18 #include "extensions/browser/extension_registry_observer.h" |
| 18 | 19 |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 scoped_ptr<ManagementEventRouter> management_event_router_; | 289 scoped_ptr<ManagementEventRouter> management_event_router_; |
| 289 | 290 |
| 290 scoped_ptr<ManagementAPIDelegate> delegate_; | 291 scoped_ptr<ManagementAPIDelegate> delegate_; |
| 291 | 292 |
| 292 DISALLOW_COPY_AND_ASSIGN(ManagementAPI); | 293 DISALLOW_COPY_AND_ASSIGN(ManagementAPI); |
| 293 }; | 294 }; |
| 294 | 295 |
| 295 } // namespace extensions | 296 } // namespace extensions |
| 296 | 297 |
| 297 #endif // EXTENSIONS_BROWSER_API_MANAGEMENT_MANAGEMENT_API_H_ | 298 #endif // EXTENSIONS_BROWSER_API_MANAGEMENT_MANAGEMENT_API_H_ |
| OLD | NEW |