Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 541813002: Componentize chrome/common/content_settings files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN fix Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <set> 7 #include <set>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 #include "chrome/browser/tab_contents/tab_util.h" 74 #include "chrome/browser/tab_contents/tab_util.h"
75 #include "chrome/browser/ui/blocked_content/blocked_window_params.h" 75 #include "chrome/browser/ui/blocked_content/blocked_window_params.h"
76 #include "chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h" 76 #include "chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h"
77 #include "chrome/browser/ui/chrome_select_file_policy.h" 77 #include "chrome/browser/ui/chrome_select_file_policy.h"
78 #include "chrome/browser/ui/sync/sync_promo_ui.h" 78 #include "chrome/browser/ui/sync/sync_promo_ui.h"
79 #include "chrome/browser/ui/tab_contents/chrome_web_contents_view_delegate.h" 79 #include "chrome/browser/ui/tab_contents/chrome_web_contents_view_delegate.h"
80 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h" 80 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h"
81 #include "chrome/common/chrome_constants.h" 81 #include "chrome/common/chrome_constants.h"
82 #include "chrome/common/chrome_paths.h" 82 #include "chrome/common/chrome_paths.h"
83 #include "chrome/common/chrome_switches.h" 83 #include "chrome/common/chrome_switches.h"
84 #include "chrome/common/content_settings.h"
85 #include "chrome/common/env_vars.h" 84 #include "chrome/common/env_vars.h"
86 #include "chrome/common/logging_chrome.h" 85 #include "chrome/common/logging_chrome.h"
87 #include "chrome/common/pepper_permission_util.h" 86 #include "chrome/common/pepper_permission_util.h"
88 #include "chrome/common/pref_names.h" 87 #include "chrome/common/pref_names.h"
89 #include "chrome/common/render_messages.h" 88 #include "chrome/common/render_messages.h"
90 #include "chrome/common/url_constants.h" 89 #include "chrome/common/url_constants.h"
91 #include "chrome/grit/generated_resources.h" 90 #include "chrome/grit/generated_resources.h"
92 #include "chrome/installer/util/google_update_settings.h" 91 #include "chrome/installer/util/google_update_settings.h"
93 #include "chromeos/chromeos_constants.h" 92 #include "chromeos/chromeos_constants.h"
94 #include "components/cdm/browser/cdm_message_filter_android.h" 93 #include "components/cdm/browser/cdm_message_filter_android.h"
95 #include "components/cloud_devices/common/cloud_devices_switches.h" 94 #include "components/cloud_devices/common/cloud_devices_switches.h"
95 #include "components/content_settings/core/common/content_settings.h"
96 #include "components/dom_distiller/core/url_constants.h" 96 #include "components/dom_distiller/core/url_constants.h"
97 #include "components/google/core/browser/google_util.h" 97 #include "components/google/core/browser/google_util.h"
98 #include "components/metrics/client_info.h" 98 #include "components/metrics/client_info.h"
99 #include "components/pref_registry/pref_registry_syncable.h" 99 #include "components/pref_registry/pref_registry_syncable.h"
100 #include "components/signin/core/common/profile_management_switches.h" 100 #include "components/signin/core/common/profile_management_switches.h"
101 #include "components/translate/core/common/translate_switches.h" 101 #include "components/translate/core/common/translate_switches.h"
102 #include "content/public/browser/browser_child_process_host.h" 102 #include "content/public/browser/browser_child_process_host.h"
103 #include "content/public/browser/browser_main_parts.h" 103 #include "content/public/browser/browser_main_parts.h"
104 #include "content/public/browser/browser_ppapi_host.h" 104 #include "content/public/browser/browser_ppapi_host.h"
105 #include "content/public/browser/browser_thread.h" 105 #include "content/public/browser/browser_thread.h"
(...skipping 2486 matching lines...) Expand 10 before | Expand all | Expand 10 after
2592 switches::kDisableWebRtcEncryption, 2592 switches::kDisableWebRtcEncryption,
2593 }; 2593 };
2594 to_command_line->CopySwitchesFrom(from_command_line, 2594 to_command_line->CopySwitchesFrom(from_command_line,
2595 kWebRtcDevSwitchNames, 2595 kWebRtcDevSwitchNames,
2596 arraysize(kWebRtcDevSwitchNames)); 2596 arraysize(kWebRtcDevSwitchNames));
2597 } 2597 }
2598 } 2598 }
2599 #endif // defined(ENABLE_WEBRTC) 2599 #endif // defined(ENABLE_WEBRTC)
2600 2600
2601 } // namespace chrome 2601 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698