| 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_vector.h" | |
| 9 #include "extensions/browser/extension_system.h" | 8 #include "extensions/browser/extension_system.h" |
| 10 #include "extensions/common/one_shot_event.h" | 9 #include "extensions/common/one_shot_event.h" |
| 11 | 10 |
| 12 class Profile; | 11 class Profile; |
| 13 | 12 |
| 14 namespace extensions { | 13 namespace extensions { |
| 15 | 14 |
| 16 class ExtensionSystemSharedFactory; | 15 class ExtensionSystemSharedFactory; |
| 17 class NavigationObserver; | 16 class NavigationObserver; |
| 18 class StateStoreNotificationObserver; | 17 class StateStoreNotificationObserver; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 Profile* profile_; | 121 Profile* profile_; |
| 123 | 122 |
| 124 Shared* shared_; | 123 Shared* shared_; |
| 125 | 124 |
| 126 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); | 125 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 } // namespace extensions | 128 } // namespace extensions |
| 130 | 129 |
| 131 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 130 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| OLD | NEW |