Chromium Code Reviews| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/command_line.h" | |
|
Devlin
2016/08/10 19:22:31
needed?
| |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 12 #include "extensions/browser/extension_system.h" | 13 #include "extensions/browser/extension_system.h" |
| 13 #include "extensions/common/one_shot_event.h" | 14 #include "extensions/common/one_shot_event.h" |
| 14 | 15 |
| 15 class Profile; | 16 class Profile; |
| 16 class ValueStore; | 17 class ValueStore; |
| 17 | 18 |
| 18 namespace extensions { | 19 namespace extensions { |
| 19 | 20 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 143 Profile* profile_; | 144 Profile* profile_; |
| 144 | 145 |
| 145 Shared* shared_; | 146 Shared* shared_; |
| 146 | 147 |
| 147 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); | 148 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); |
| 148 }; | 149 }; |
| 149 | 150 |
| 150 } // namespace extensions | 151 } // namespace extensions |
| 151 | 152 |
| 152 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 153 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| OLD | NEW |