| 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_INFO_MAP_H_ | 5 #ifndef EXTENSIONS_BROWSER_INFO_MAP_H_ |
| 6 #define EXTENSIONS_BROWSER_INFO_MAP_H_ | 6 #define EXTENSIONS_BROWSER_INFO_MAP_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 14 #include "extensions/browser/process_map.h" | 13 #include "extensions/browser/process_map.h" |
| 15 #include "extensions/browser/quota_service.h" | 14 #include "extensions/browser/quota_service.h" |
| 16 #include "extensions/common/extension_set.h" | 15 #include "extensions/common/extension_set.h" |
| 17 #include "extensions/common/permissions/api_permission.h" | 16 #include "extensions/common/permissions/api_permission.h" |
| 18 | 17 |
| 19 namespace base { | 18 namespace base { |
| 20 class FilePath; | 19 class FilePath; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 118 |
| 120 // Assignment of extensions to renderer processes. | 119 // Assignment of extensions to renderer processes. |
| 121 extensions::ProcessMap process_map_; | 120 extensions::ProcessMap process_map_; |
| 122 | 121 |
| 123 scoped_refptr<ContentVerifier> content_verifier_; | 122 scoped_refptr<ContentVerifier> content_verifier_; |
| 124 }; | 123 }; |
| 125 | 124 |
| 126 } // namespace extensions | 125 } // namespace extensions |
| 127 | 126 |
| 128 #endif // EXTENSIONS_BROWSER_INFO_MAP_H_ | 127 #endif // EXTENSIONS_BROWSER_INFO_MAP_H_ |
| OLD | NEW |