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_EXTENSION_CONTENT_SETTINGS_STORE_H_ | 5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_EXTENSION_CONTENT_SETTINGS_STORE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTENT_SETTINGS_STORE_H_ | 6 #define CHROME_BROWSER_CONTENT_SETTINGS_EXTENSION_CONTENT_SETTINGS_STORE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
12 #include "base/synchronization/lock.h" | 12 #include "base/synchronization/lock.h" |
13 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "base/tuple.h" | 15 #include "base/tuple.h" |
16 #include "chrome/browser/content_settings/content_settings_provider.h" | 16 #include "chrome/browser/content_settings/content_settings_provider.h" |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 132 |
133 ExtensionEntryMap entries_; | 133 ExtensionEntryMap entries_; |
134 | 134 |
135 ObserverList<Observer, false> observers_; | 135 ObserverList<Observer, false> observers_; |
136 | 136 |
137 mutable base::Lock lock_; | 137 mutable base::Lock lock_; |
138 | 138 |
139 DISALLOW_COPY_AND_ASSIGN(ExtensionContentSettingsStore); | 139 DISALLOW_COPY_AND_ASSIGN(ExtensionContentSettingsStore); |
140 }; | 140 }; |
141 | 141 |
142 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTENT_SETTINGS_STORE_H_ | 142 #endif // CHROME_BROWSER_CONTENT_SETTINGS_EXTENSION_CONTENT_SETTINGS_STORE_H_ |
OLD | NEW |