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

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

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "base/command_line.h" 7 #include "base/command_line.h"
8 #include "chrome/app/breakpad_mac.h" 8 #include "chrome/app/breakpad_mac.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/character_encoding.h" 10 #include "chrome/browser/character_encoding.h"
11 #include "chrome/browser/chrome_plugin_message_filter.h" 11 #include "chrome/browser/chrome_plugin_message_filter.h"
12 #include "chrome/browser/chrome_quota_permission_context.h" 12 #include "chrome/browser/chrome_quota_permission_context.h"
13 #include "chrome/browser/chrome_worker_message_filter.h" 13 #include "chrome/browser/chrome_worker_message_filter.h"
14 #include "chrome/browser/content_settings/host_content_settings_map.h" 14 #include "chrome/browser/content_settings/host_content_settings_map.h"
15 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 15 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
16 #include "chrome/browser/debugger/devtools_handler.h"
17 #include "chrome/browser/extensions/extension_info_map.h" 16 #include "chrome/browser/extensions/extension_info_map.h"
18 #include "chrome/browser/extensions/extension_message_handler.h" 17 #include "chrome/browser/extensions/extension_message_handler.h"
19 #include "chrome/browser/extensions/extension_service.h" 18 #include "chrome/browser/extensions/extension_service.h"
20 #include "chrome/browser/google/google_util.h" 19 #include "chrome/browser/google/google_util.h"
21 #include "chrome/browser/notifications/desktop_notification_service.h" 20 #include "chrome/browser/notifications/desktop_notification_service.h"
22 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 21 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
23 #include "chrome/browser/platform_util.h" 22 #include "chrome/browser/platform_util.h"
24 #include "chrome/browser/prefs/pref_service.h" 23 #include "chrome/browser/prefs/pref_service.h"
25 #include "chrome/browser/printing/printing_message_filter.h" 24 #include "chrome/browser/printing/printing_message_filter.h"
26 #include "chrome/browser/profiles/profile.h" 25 #include "chrome/browser/profiles/profile.h"
(...skipping 12 matching lines...) Expand all
39 #include "chrome/common/child_process_logging.h" 38 #include "chrome/common/child_process_logging.h"
40 #include "chrome/common/chrome_switches.h" 39 #include "chrome/common/chrome_switches.h"
41 #include "chrome/common/extensions/extension.h" 40 #include "chrome/common/extensions/extension.h"
42 #include "chrome/common/extensions/extension_messages.h" 41 #include "chrome/common/extensions/extension_messages.h"
43 #include "chrome/common/logging_chrome.h" 42 #include "chrome/common/logging_chrome.h"
44 #include "chrome/common/pref_names.h" 43 #include "chrome/common/pref_names.h"
45 #include "chrome/common/render_messages.h" 44 #include "chrome/common/render_messages.h"
46 #include "chrome/common/url_constants.h" 45 #include "chrome/common/url_constants.h"
47 #include "content/browser/browsing_instance.h" 46 #include "content/browser/browsing_instance.h"
48 #include "content/browser/child_process_security_policy.h" 47 #include "content/browser/child_process_security_policy.h"
48 #include "content/browser/debugger/devtools_handler.h"
49 #include "content/browser/plugin_process_host.h" 49 #include "content/browser/plugin_process_host.h"
50 #include "content/browser/renderer_host/browser_render_process_host.h" 50 #include "content/browser/renderer_host/browser_render_process_host.h"
51 #include "content/browser/renderer_host/render_view_host.h" 51 #include "content/browser/renderer_host/render_view_host.h"
52 #include "content/browser/resource_context.h" 52 #include "content/browser/resource_context.h"
53 #include "content/browser/site_instance.h" 53 #include "content/browser/site_instance.h"
54 #include "content/browser/ssl/ssl_client_auth_handler.h" 54 #include "content/browser/ssl/ssl_client_auth_handler.h"
55 #include "content/browser/tab_contents/tab_contents.h" 55 #include "content/browser/tab_contents/tab_contents.h"
56 #include "content/browser/worker_host/worker_process_host.h" 56 #include "content/browser/worker_host/worker_process_host.h"
57 #include "content/common/bindings_policy.h" 57 #include "content/common/bindings_policy.h"
58 #include "content/common/desktop_notification_messages.h" 58 #include "content/common/desktop_notification_messages.h"
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 #if defined(USE_NSS) 598 #if defined(USE_NSS)
599 crypto::CryptoModuleBlockingPasswordDelegate* 599 crypto::CryptoModuleBlockingPasswordDelegate*
600 ChromeContentBrowserClient::GetCryptoPasswordDelegate( 600 ChromeContentBrowserClient::GetCryptoPasswordDelegate(
601 const GURL& url) { 601 const GURL& url) {
602 return browser::NewCryptoModuleBlockingDialogDelegate( 602 return browser::NewCryptoModuleBlockingDialogDelegate(
603 browser::kCryptoModulePasswordKeygen, url.host()); 603 browser::kCryptoModulePasswordKeygen, url.host());
604 } 604 }
605 #endif 605 #endif
606 606
607 } // namespace chrome 607 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698