| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |