OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PROCESS_MAP_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_PROCESS_MAP_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_PROCESS_MAP_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_PROCESS_MAP_H_ |
7 #pragma once | |
8 | 7 |
9 #include <set> | 8 #include <set> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
13 | 12 |
14 namespace extensions { | 13 namespace extensions { |
15 | 14 |
16 // Contains information about which extensions are assigned to which processes. | 15 // Contains information about which extensions are assigned to which processes. |
17 // | 16 // |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 85 |
87 typedef std::set<Item> ItemSet; | 86 typedef std::set<Item> ItemSet; |
88 ItemSet items_; | 87 ItemSet items_; |
89 | 88 |
90 DISALLOW_COPY_AND_ASSIGN(ProcessMap); | 89 DISALLOW_COPY_AND_ASSIGN(ProcessMap); |
91 }; | 90 }; |
92 | 91 |
93 } // extensions | 92 } // extensions |
94 | 93 |
95 #endif // CHROME_BROWSER_EXTENSIONS_PROCESS_MAP_H_ | 94 #endif // CHROME_BROWSER_EXTENSIONS_PROCESS_MAP_H_ |
OLD | NEW |