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 // Interface for objects providing content setting rules. | 5 // Interface for objects providing content setting rules. |
6 | 6 |
7 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ | 7 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ |
8 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ | 8 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
11 #define NO_RESOURCE_IDENTIFIER "" | 11 #define NO_RESOURCE_IDENTIFIER "" |
12 | 12 |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/values.h" | 16 #include "base/values.h" |
17 #include "chrome/common/content_settings.h" | 17 #include "chrome/common/content_settings_types.h" |
18 | 18 |
19 class ContentSettingsPattern; | 19 class ContentSettingsPattern; |
20 | 20 |
21 namespace content_settings { | 21 namespace content_settings { |
22 | 22 |
23 struct Rule; | 23 struct Rule; |
24 class RuleIterator; | 24 class RuleIterator; |
25 | 25 |
26 typedef std::string ResourceIdentifier; | 26 typedef std::string ResourceIdentifier; |
27 | 27 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 // Detaches the Provider from all Profile-related objects like PrefService. | 68 // Detaches the Provider from all Profile-related objects like PrefService. |
69 // This methods needs to be called before destroying the Profile. | 69 // This methods needs to be called before destroying the Profile. |
70 // Afterwards, none of the methods above that should only be called on the UI | 70 // Afterwards, none of the methods above that should only be called on the UI |
71 // thread should be called anymore. | 71 // thread should be called anymore. |
72 virtual void ShutdownOnUIThread() = 0; | 72 virtual void ShutdownOnUIThread() = 0; |
73 }; | 73 }; |
74 | 74 |
75 } // namespace content_settings | 75 } // namespace content_settings |
76 | 76 |
77 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ | 77 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ |
OLD | NEW |