| 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 // Maps hostnames to custom content settings. Written on the UI thread and read | 5 // Maps hostnames to custom content settings. Written on the UI thread and read |
| 6 // on any thread. One instance per profile. | 6 // on any thread. One instance per profile. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_H_ | 8 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_H_ |
| 9 #define CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_H_ | 9 #define CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_H_ |
| 10 #pragma once | 10 #pragma once |
| 11 | 11 |
| 12 #include <map> | 12 #include <map> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
| 17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/synchronization/lock.h" | 18 #include "base/synchronization/lock.h" |
| 19 #include "base/tuple.h" | 19 #include "base/tuple.h" |
| 20 #include "chrome/browser/content_settings/content_settings_observer.h" | 20 #include "chrome/browser/content_settings/content_settings_observer.h" |
| 21 #include "chrome/browser/prefs/pref_change_registrar.h" | 21 #include "chrome/browser/prefs/pref_change_registrar.h" |
| 22 #include "chrome/common/content_settings.h" | 22 #include "chrome/common/content_settings.h" |
| 23 #include "chrome/common/content_settings_types.h" |
| 23 #include "chrome/common/content_settings_pattern.h" | 24 #include "chrome/common/content_settings_pattern.h" |
| 24 | 25 |
| 25 namespace base { | 26 namespace base { |
| 26 class Value; | 27 class Value; |
| 27 } // namespace base | 28 } // namespace base |
| 28 | 29 |
| 29 namespace content_settings { | 30 namespace content_settings { |
| 30 class ProviderInterface; | 31 class ProviderInterface; |
| 31 } // namespace content_settings | 32 } // namespace content_settings |
| 32 | 33 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 // Content setting providers. | 223 // Content setting providers. |
| 223 ProviderMap content_settings_providers_; | 224 ProviderMap content_settings_providers_; |
| 224 | 225 |
| 225 // Used around accesses to the following objects to guarantee thread safety. | 226 // Used around accesses to the following objects to guarantee thread safety. |
| 226 mutable base::Lock lock_; | 227 mutable base::Lock lock_; |
| 227 | 228 |
| 228 DISALLOW_COPY_AND_ASSIGN(HostContentSettingsMap); | 229 DISALLOW_COPY_AND_ASSIGN(HostContentSettingsMap); |
| 229 }; | 230 }; |
| 230 | 231 |
| 231 #endif // CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_H_ | 232 #endif // CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_H_ |
| OLD | NEW |