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/ui/content_settings/content_setting_bubble_model.h" | 5 #include "chrome/browser/ui/content_settings/content_setting_bubble_model.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/feature_list.h" | 10 #include "base/feature_list.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 #include "chrome/common/chrome_features.h" | 36 #include "chrome/common/chrome_features.h" |
37 #include "chrome/common/chrome_switches.h" | 37 #include "chrome/common/chrome_switches.h" |
38 #include "chrome/common/insecure_content_renderer.mojom.h" | 38 #include "chrome/common/insecure_content_renderer.mojom.h" |
39 #include "chrome/common/pref_names.h" | 39 #include "chrome/common/pref_names.h" |
40 #include "chrome/common/render_messages.h" | 40 #include "chrome/common/render_messages.h" |
41 #include "chrome/grit/generated_resources.h" | 41 #include "chrome/grit/generated_resources.h" |
42 #include "chrome/grit/theme_resources.h" | 42 #include "chrome/grit/theme_resources.h" |
43 #include "components/content_settings/core/browser/content_settings_utils.h" | 43 #include "components/content_settings/core/browser/content_settings_utils.h" |
44 #include "components/content_settings/core/browser/cookie_settings.h" | 44 #include "components/content_settings/core/browser/cookie_settings.h" |
45 #include "components/content_settings/core/common/content_settings.h" | 45 #include "components/content_settings/core/common/content_settings.h" |
| 46 #include "components/content_settings/core/common/content_settings_utils.h" |
46 #include "components/prefs/pref_service.h" | 47 #include "components/prefs/pref_service.h" |
47 #include "components/rappor/public/rappor_utils.h" | 48 #include "components/rappor/public/rappor_utils.h" |
48 #include "components/rappor/rappor_service_impl.h" | 49 #include "components/rappor/rappor_service_impl.h" |
49 #include "components/strings/grit/components_strings.h" | 50 #include "components/strings/grit/components_strings.h" |
50 #include "components/subresource_filter/core/browser/subresource_filter_features
.h" | 51 #include "components/subresource_filter/core/browser/subresource_filter_features
.h" |
51 #include "components/url_formatter/elide_url.h" | 52 #include "components/url_formatter/elide_url.h" |
52 #include "content/public/browser/notification_service.h" | 53 #include "content/public/browser/notification_service.h" |
53 #include "content/public/browser/render_frame_host.h" | 54 #include "content/public/browser/render_frame_host.h" |
54 #include "content/public/browser/render_process_host.h" | 55 #include "content/public/browser/render_process_host.h" |
55 #include "content/public/browser/render_view_host.h" | 56 #include "content/public/browser/render_view_host.h" |
(...skipping 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1599 | 1600 |
1600 ContentSettingSubresourceFilterBubbleModel* | 1601 ContentSettingSubresourceFilterBubbleModel* |
1601 ContentSettingBubbleModel::AsSubresourceFilterBubbleModel() { | 1602 ContentSettingBubbleModel::AsSubresourceFilterBubbleModel() { |
1602 return nullptr; | 1603 return nullptr; |
1603 } | 1604 } |
1604 | 1605 |
1605 ContentSettingDownloadsBubbleModel* | 1606 ContentSettingDownloadsBubbleModel* |
1606 ContentSettingBubbleModel::AsDownloadsBubbleModel() { | 1607 ContentSettingBubbleModel::AsDownloadsBubbleModel() { |
1607 return nullptr; | 1608 return nullptr; |
1608 } | 1609 } |
OLD | NEW |