OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_PROCESS_MAP_H_ | 5 #ifndef EXTENSIONS_BROWSER_PROCESS_MAP_H_ |
6 #define EXTENSIONS_BROWSER_PROCESS_MAP_H_ | 6 #define EXTENSIONS_BROWSER_PROCESS_MAP_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <set> | 10 #include <set> |
9 #include <string> | 11 #include <string> |
10 | 12 |
11 #include "base/basictypes.h" | 13 #include "base/macros.h" |
12 #include "components/keyed_service/core/keyed_service.h" | 14 #include "components/keyed_service/core/keyed_service.h" |
13 #include "extensions/common/features/feature.h" | 15 #include "extensions/common/features/feature.h" |
14 | 16 |
15 namespace content { | 17 namespace content { |
16 class BrowserContext; | 18 class BrowserContext; |
17 } | 19 } |
18 | 20 |
19 namespace extensions { | 21 namespace extensions { |
20 class Extension; | 22 class Extension; |
21 | 23 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 133 |
132 typedef std::set<Item> ItemSet; | 134 typedef std::set<Item> ItemSet; |
133 ItemSet items_; | 135 ItemSet items_; |
134 | 136 |
135 DISALLOW_COPY_AND_ASSIGN(ProcessMap); | 137 DISALLOW_COPY_AND_ASSIGN(ProcessMap); |
136 }; | 138 }; |
137 | 139 |
138 } // namespace extensions | 140 } // namespace extensions |
139 | 141 |
140 #endif // EXTENSIONS_BROWSER_PROCESS_MAP_H_ | 142 #endif // EXTENSIONS_BROWSER_PROCESS_MAP_H_ |
OLD | NEW |