OLD | NEW |
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 <set> | 7 #include <set> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
624 switches::kAllowLegacyExtensionManifests, | 624 switches::kAllowLegacyExtensionManifests, |
625 switches::kAllowNaClSocketAPI, | 625 switches::kAllowNaClSocketAPI, |
626 switches::kAllowScriptingGallery, | 626 switches::kAllowScriptingGallery, |
627 switches::kAppsCheckoutURL, | 627 switches::kAppsCheckoutURL, |
628 switches::kAppsGalleryURL, | 628 switches::kAppsGalleryURL, |
629 switches::kCloudPrintServiceURL, | 629 switches::kCloudPrintServiceURL, |
630 switches::kDebugPrint, | 630 switches::kDebugPrint, |
631 switches::kDisablePrintPreview, | 631 switches::kDisablePrintPreview, |
632 switches::kDomAutomationController, | 632 switches::kDomAutomationController, |
633 switches::kDumpHistogramsOnExit, | 633 switches::kDumpHistogramsOnExit, |
634 switches::kEnableClickToPlay, | 634 switches::kEnableBenchmarking, |
635 switches::kEnableCrxlessWebApps, | 635 switches::kEnableCrxlessWebApps, |
636 switches::kEnableExperimentalExtensionApis, | 636 switches::kEnableExperimentalExtensionApis, |
637 switches::kEnableInBrowserThumbnailing, | 637 switches::kEnableInBrowserThumbnailing, |
638 switches::kEnableIPCFuzzing, | 638 switches::kEnableIPCFuzzing, |
639 switches::kEnableLazyBackgroundPages, | 639 switches::kEnableLazyBackgroundPages, |
640 switches::kEnableNaCl, | 640 switches::kEnableNaCl, |
641 switches::kEnablePlatformApps, | 641 switches::kEnablePlatformApps, |
642 switches::kEnablePrintPreview, | 642 switches::kEnablePrintPreview, |
643 switches::kEnableSearchProviderApiV2, | 643 switches::kEnableSearchProviderApiV2, |
644 switches::kEnableWatchdog, | 644 switches::kEnableWatchdog, |
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1212 #if defined(USE_NSS) | 1212 #if defined(USE_NSS) |
1213 crypto::CryptoModuleBlockingPasswordDelegate* | 1213 crypto::CryptoModuleBlockingPasswordDelegate* |
1214 ChromeContentBrowserClient::GetCryptoPasswordDelegate( | 1214 ChromeContentBrowserClient::GetCryptoPasswordDelegate( |
1215 const GURL& url) { | 1215 const GURL& url) { |
1216 return browser::NewCryptoModuleBlockingDialogDelegate( | 1216 return browser::NewCryptoModuleBlockingDialogDelegate( |
1217 browser::kCryptoModulePasswordKeygen, url.host()); | 1217 browser::kCryptoModulePasswordKeygen, url.host()); |
1218 } | 1218 } |
1219 #endif | 1219 #endif |
1220 | 1220 |
1221 } // namespace chrome | 1221 } // namespace chrome |
OLD | NEW |