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 "base/strings/utf_string_conversions.h" | 5 #include "base/strings/utf_string_conversions.h" |
6 #include "chrome/browser/chrome_notification_types.h" | 6 #include "chrome/browser/chrome_notification_types.h" |
7 #include "chrome/browser/content_settings/host_content_settings_map.h" | |
8 #include "chrome/browser/content_settings/tab_specific_content_settings.h" | 7 #include "chrome/browser/content_settings/tab_specific_content_settings.h" |
9 #include "chrome/browser/prerender/prerender_manager.h" | 8 #include "chrome/browser/prerender/prerender_manager.h" |
10 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/browser/ui/content_settings/content_setting_image_model.h" | 10 #include "chrome/browser/ui/content_settings/content_setting_image_model.h" |
12 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 11 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
13 #include "chrome/test/base/testing_profile.h" | 12 #include "chrome/test/base/testing_profile.h" |
| 13 #include "components/content_settings/core/browser/host_content_settings_map.h" |
14 #include "content/public/browser/notification_observer.h" | 14 #include "content/public/browser/notification_observer.h" |
15 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
16 #include "content/public/browser/notification_service.h" | 16 #include "content/public/browser/notification_service.h" |
17 #include "content/public/test/test_renderer_host.h" | 17 #include "content/public/test/test_renderer_host.h" |
18 #include "net/cookies/cookie_options.h" | 18 #include "net/cookies/cookie_options.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 // Forward all NOTIFICATION_WEB_CONTENT_SETTINGS_CHANGED to the specified | 23 // Forward all NOTIFICATION_WEB_CONTENT_SETTINGS_CHANGED to the specified |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 scoped_ptr<ContentSettingImageModel> content_setting_image_model( | 121 scoped_ptr<ContentSettingImageModel> content_setting_image_model( |
122 ContentSettingImageModel::CreateContentSettingImageModel( | 122 ContentSettingImageModel::CreateContentSettingImageModel( |
123 CONTENT_SETTINGS_TYPE_IMAGES)); | 123 CONTENT_SETTINGS_TYPE_IMAGES)); |
124 NotificationForwarder forwarder(content_setting_image_model.get()); | 124 NotificationForwarder forwarder(content_setting_image_model.get()); |
125 // Should not crash. | 125 // Should not crash. |
126 TabSpecificContentSettings::CreateForWebContents(web_contents()); | 126 TabSpecificContentSettings::CreateForWebContents(web_contents()); |
127 forwarder.clear(); | 127 forwarder.clear(); |
128 } | 128 } |
129 | 129 |
130 } // namespace | 130 } // namespace |
OLD | NEW |