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

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

Issue 9371025: Move resource_context.h to content/public/browser. Remove the workaround in its destructor since ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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
« no previous file with comments | « chrome/browser/DEPS ('k') | chrome/browser/chrome_plugin_service_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 #include "chrome/common/chrome_constants.h" 60 #include "chrome/common/chrome_constants.h"
61 #include "chrome/common/chrome_switches.h" 61 #include "chrome/common/chrome_switches.h"
62 #include "chrome/common/extensions/extension.h" 62 #include "chrome/common/extensions/extension.h"
63 #include "chrome/common/extensions/extension_set.h" 63 #include "chrome/common/extensions/extension_set.h"
64 #include "chrome/common/logging_chrome.h" 64 #include "chrome/common/logging_chrome.h"
65 #include "chrome/common/pref_names.h" 65 #include "chrome/common/pref_names.h"
66 #include "chrome/common/render_messages.h" 66 #include "chrome/common/render_messages.h"
67 #include "chrome/common/url_constants.h" 67 #include "chrome/common/url_constants.h"
68 #include "content/browser/browser_url_handler.h" 68 #include "content/browser/browser_url_handler.h"
69 #include "content/browser/renderer_host/render_view_host.h" 69 #include "content/browser/renderer_host/render_view_host.h"
70 #include "content/browser/resource_context.h"
71 #include "content/browser/ssl/ssl_cert_error_handler.h" 70 #include "content/browser/ssl/ssl_cert_error_handler.h"
72 #include "content/browser/ssl/ssl_client_auth_handler.h" 71 #include "content/browser/ssl/ssl_client_auth_handler.h"
73 #include "content/public/browser/browser_main_parts.h" 72 #include "content/public/browser/browser_main_parts.h"
74 #include "content/public/browser/child_process_security_policy.h" 73 #include "content/public/browser/child_process_security_policy.h"
75 #include "content/public/browser/render_process_host.h" 74 #include "content/public/browser/render_process_host.h"
75 #include "content/public/browser/resource_context.h"
76 #include "content/public/browser/site_instance.h" 76 #include "content/public/browser/site_instance.h"
77 #include "content/public/browser/web_contents.h" 77 #include "content/public/browser/web_contents.h"
78 #include "content/public/browser/web_contents_view.h" 78 #include "content/public/browser/web_contents_view.h"
79 #include "grit/generated_resources.h" 79 #include "grit/generated_resources.h"
80 #include "grit/ui_resources.h" 80 #include "grit/ui_resources.h"
81 #include "net/base/cookie_monster.h" 81 #include "net/base/cookie_monster.h"
82 #include "net/base/cookie_options.h" 82 #include "net/base/cookie_options.h"
83 #include "ui/base/l10n/l10n_util.h" 83 #include "ui/base/l10n/l10n_util.h"
84 #include "ui/base/resource/resource_bundle.h" 84 #include "ui/base/resource/resource_bundle.h"
85 #include "webkit/glue/webpreferences.h" 85 #include "webkit/glue/webpreferences.h"
(...skipping 1236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 #if defined(USE_NSS) 1322 #if defined(USE_NSS)
1323 crypto::CryptoModuleBlockingPasswordDelegate* 1323 crypto::CryptoModuleBlockingPasswordDelegate*
1324 ChromeContentBrowserClient::GetCryptoPasswordDelegate( 1324 ChromeContentBrowserClient::GetCryptoPasswordDelegate(
1325 const GURL& url) { 1325 const GURL& url) {
1326 return browser::NewCryptoModuleBlockingDialogDelegate( 1326 return browser::NewCryptoModuleBlockingDialogDelegate(
1327 browser::kCryptoModulePasswordKeygen, url.host()); 1327 browser::kCryptoModulePasswordKeygen, url.host());
1328 } 1328 }
1329 #endif 1329 #endif
1330 1330
1331 } // namespace chrome 1331 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/DEPS ('k') | chrome/browser/chrome_plugin_service_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698