OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "chrome/browser/content_settings/content_settings_internal_extension_pr
ovider.h" | 5 #include "chrome/browser/content_settings/content_settings_internal_extension_pr
ovider.h" |
6 | 6 |
| 7 #include "chrome/browser/chrome_notification_types.h" |
7 #include "chrome/browser/content_settings/content_settings_rule.h" | 8 #include "chrome/browser/content_settings/content_settings_rule.h" |
8 #include "chrome/browser/extensions/extension_host.h" | 9 #include "chrome/browser/extensions/extension_host.h" |
9 #include "chrome/browser/extensions/extension_service.h" | 10 #include "chrome/browser/extensions/extension_service.h" |
10 #include "chrome/common/chrome_notification_types.h" | |
11 #include "chrome/common/content_settings.h" | 11 #include "chrome/common/content_settings.h" |
12 #include "chrome/common/content_settings_pattern.h" | 12 #include "chrome/common/content_settings_pattern.h" |
13 #include "chrome/common/extensions/api/plugins/plugins_handler.h" | 13 #include "chrome/common/extensions/api/plugins/plugins_handler.h" |
14 #include "chrome/common/extensions/extension.h" | 14 #include "chrome/common/extensions/extension.h" |
15 #include "chrome/common/extensions/extension_set.h" | 15 #include "chrome/common/extensions/extension_set.h" |
16 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
17 #include "content/public/browser/notification_details.h" | 17 #include "content/public/browser/notification_details.h" |
18 #include "content/public/browser/notification_service.h" | 18 #include "content/public/browser/notification_service.h" |
19 #include "extensions/common/constants.h" | 19 #include "extensions/common/constants.h" |
20 | 20 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 Value::CreateIntegerValue(setting)); | 126 Value::CreateIntegerValue(setting)); |
127 } | 127 } |
128 } | 128 } |
129 NotifyObservers(primary_pattern, | 129 NotifyObservers(primary_pattern, |
130 secondary_pattern, | 130 secondary_pattern, |
131 CONTENT_SETTINGS_TYPE_PLUGINS, | 131 CONTENT_SETTINGS_TYPE_PLUGINS, |
132 ResourceIdentifier()); | 132 ResourceIdentifier()); |
133 } | 133 } |
134 | 134 |
135 } // namespace content_settings | 135 } // namespace content_settings |
OLD | NEW |