| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 switches::kAllowLegacyExtensionManifests, | 634 switches::kAllowLegacyExtensionManifests, |
| 635 switches::kAllowNaClSocketAPI, | 635 switches::kAllowNaClSocketAPI, |
| 636 switches::kAllowScriptingGallery, | 636 switches::kAllowScriptingGallery, |
| 637 switches::kAppsCheckoutURL, | 637 switches::kAppsCheckoutURL, |
| 638 switches::kAppsGalleryURL, | 638 switches::kAppsGalleryURL, |
| 639 switches::kCloudPrintServiceURL, | 639 switches::kCloudPrintServiceURL, |
| 640 switches::kDebugPrint, | 640 switches::kDebugPrint, |
| 641 switches::kDomAutomationController, | 641 switches::kDomAutomationController, |
| 642 switches::kDumpHistogramsOnExit, | 642 switches::kDumpHistogramsOnExit, |
| 643 switches::kEnableBenchmarking, | 643 switches::kEnableBenchmarking, |
| 644 switches::kEnableClickToPlay, | |
| 645 switches::kEnableCrxlessWebApps, | 644 switches::kEnableCrxlessWebApps, |
| 646 switches::kEnableExperimentalExtensionApis, | 645 switches::kEnableExperimentalExtensionApis, |
| 647 switches::kEnableInBrowserThumbnailing, | 646 switches::kEnableInBrowserThumbnailing, |
| 648 switches::kEnableIPCFuzzing, | 647 switches::kEnableIPCFuzzing, |
| 649 switches::kEnableNaCl, | 648 switches::kEnableNaCl, |
| 650 switches::kEnablePlatformApps, | 649 switches::kEnablePlatformApps, |
| 651 switches::kEnableSearchProviderApiV2, | 650 switches::kEnableSearchProviderApiV2, |
| 652 switches::kEnableWatchdog, | 651 switches::kEnableWatchdog, |
| 653 switches::kExperimentalSpellcheckerFeatures, | 652 switches::kExperimentalSpellcheckerFeatures, |
| 654 switches::kMemoryProfiling, | 653 switches::kMemoryProfiling, |
| (...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1474 #if defined(USE_NSS) | 1473 #if defined(USE_NSS) |
| 1475 crypto::CryptoModuleBlockingPasswordDelegate* | 1474 crypto::CryptoModuleBlockingPasswordDelegate* |
| 1476 ChromeContentBrowserClient::GetCryptoPasswordDelegate( | 1475 ChromeContentBrowserClient::GetCryptoPasswordDelegate( |
| 1477 const GURL& url) { | 1476 const GURL& url) { |
| 1478 return browser::NewCryptoModuleBlockingDialogDelegate( | 1477 return browser::NewCryptoModuleBlockingDialogDelegate( |
| 1479 browser::kCryptoModulePasswordKeygen, url.host()); | 1478 browser::kCryptoModulePasswordKeygen, url.host()); |
| 1480 } | 1479 } |
| 1481 #endif | 1480 #endif |
| 1482 | 1481 |
| 1483 } // namespace chrome | 1482 } // namespace chrome |
| OLD | NEW |