OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/extensions/api/content_settings/content_settings_custom
_extension_provider.h" | 5 #include "chrome/browser/extensions/api/content_settings/content_settings_custom
_extension_provider.h" |
6 | 6 |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "chrome/browser/extensions/api/content_settings/content_settings_store.
h" | 8 #include "chrome/browser/extensions/api/content_settings/content_settings_store.
h" |
9 #include "components/content_settings/core/browser/content_settings_rule.h" | 9 #include "components/content_settings/core/browser/content_settings_rule.h" |
10 #include "components/content_settings/core/browser/content_settings_utils.h" | 10 #include "components/content_settings/core/browser/content_settings_utils.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 void CustomExtensionProvider::OnContentSettingChanged( | 48 void CustomExtensionProvider::OnContentSettingChanged( |
49 const std::string& extension_id, | 49 const std::string& extension_id, |
50 bool incognito) { | 50 bool incognito) { |
51 if (incognito_ != incognito) | 51 if (incognito_ != incognito) |
52 return; | 52 return; |
53 // TODO(markusheintz): Be more concise. | 53 // TODO(markusheintz): Be more concise. |
54 NotifyObservers(ContentSettingsPattern(), | 54 NotifyObservers(ContentSettingsPattern(), |
55 ContentSettingsPattern(), | 55 ContentSettingsPattern(), |
56 CONTENT_SETTINGS_TYPE_DEFAULT, | 56 CONTENT_SETTINGS_TYPE_DEFAULT, |
| 57 CONTENT_SETTING_DEFAULT, |
57 std::string()); | 58 std::string()); |
58 } | 59 } |
59 | 60 |
60 } // namespace content_settings | 61 } // namespace content_settings |
OLD | NEW |