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/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 22 matching lines...) Expand all Loading... |
33 #include "chrome/browser/defaults.h" | 33 #include "chrome/browser/defaults.h" |
34 #include "chrome/browser/download/download_prefs.h" | 34 #include "chrome/browser/download/download_prefs.h" |
35 #include "chrome/browser/font_family_cache.h" | 35 #include "chrome/browser/font_family_cache.h" |
36 #include "chrome/browser/geolocation/chrome_access_token_store.h" | 36 #include "chrome/browser/geolocation/chrome_access_token_store.h" |
37 #include "chrome/browser/media/media_capture_devices_dispatcher.h" | 37 #include "chrome/browser/media/media_capture_devices_dispatcher.h" |
38 #include "chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.h" | 38 #include "chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.h" |
39 #include "chrome/browser/nacl_host/nacl_browser_delegate_impl.h" | 39 #include "chrome/browser/nacl_host/nacl_browser_delegate_impl.h" |
40 #include "chrome/browser/net/chrome_net_log.h" | 40 #include "chrome/browser/net/chrome_net_log.h" |
41 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h" | 41 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h" |
42 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact
ory.h" | 42 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact
ory.h" |
43 #include "chrome/browser/notifications/desktop_notification_service.h" | |
44 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | |
45 #include "chrome/browser/notifications/platform_notification_service_impl.h" | 43 #include "chrome/browser/notifications/platform_notification_service_impl.h" |
46 #include "chrome/browser/platform_util.h" | 44 #include "chrome/browser/platform_util.h" |
47 #include "chrome/browser/prerender/prerender_final_status.h" | 45 #include "chrome/browser/prerender/prerender_final_status.h" |
48 #include "chrome/browser/prerender/prerender_manager.h" | 46 #include "chrome/browser/prerender/prerender_manager.h" |
49 #include "chrome/browser/prerender/prerender_manager_factory.h" | 47 #include "chrome/browser/prerender/prerender_manager_factory.h" |
50 #include "chrome/browser/prerender/prerender_message_filter.h" | 48 #include "chrome/browser/prerender/prerender_message_filter.h" |
51 #include "chrome/browser/printing/printing_message_filter.h" | 49 #include "chrome/browser/printing/printing_message_filter.h" |
52 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h" | 50 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h" |
53 #include "chrome/browser/profiles/profile.h" | 51 #include "chrome/browser/profiles/profile.h" |
54 #include "chrome/browser/profiles/profile_io_data.h" | 52 #include "chrome/browser/profiles/profile_io_data.h" |
(...skipping 2361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2416 switches::kDisableWebRtcEncryption, | 2414 switches::kDisableWebRtcEncryption, |
2417 }; | 2415 }; |
2418 to_command_line->CopySwitchesFrom(from_command_line, | 2416 to_command_line->CopySwitchesFrom(from_command_line, |
2419 kWebRtcDevSwitchNames, | 2417 kWebRtcDevSwitchNames, |
2420 arraysize(kWebRtcDevSwitchNames)); | 2418 arraysize(kWebRtcDevSwitchNames)); |
2421 } | 2419 } |
2422 } | 2420 } |
2423 #endif // defined(ENABLE_WEBRTC) | 2421 #endif // defined(ENABLE_WEBRTC) |
2424 | 2422 |
2425 } // namespace chrome | 2423 } // namespace chrome |
OLD | NEW |