| 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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 switches::kDisableBundledPpapiFlash, | 760 switches::kDisableBundledPpapiFlash, |
| 761 switches::kDumpHistogramsOnExit, | 761 switches::kDumpHistogramsOnExit, |
| 762 switches::kEnableAsynchronousSpellChecking, | 762 switches::kEnableAsynchronousSpellChecking, |
| 763 switches::kEnableBenchmarking, | 763 switches::kEnableBenchmarking, |
| 764 switches::kEnableBundledPpapiFlash, | 764 switches::kEnableBundledPpapiFlash, |
| 765 switches::kEnableCrxlessWebApps, | 765 switches::kEnableCrxlessWebApps, |
| 766 switches::kEnableExperimentalExtensionApis, | 766 switches::kEnableExperimentalExtensionApis, |
| 767 switches::kEnableInBrowserThumbnailing, | 767 switches::kEnableInBrowserThumbnailing, |
| 768 switches::kEnableIPCFuzzing, | 768 switches::kEnableIPCFuzzing, |
| 769 switches::kEnableNaCl, | 769 switches::kEnableNaCl, |
| 770 switches::kEnableNaClIPCProxy, |
| 770 switches::kEnablePasswordGeneration, | 771 switches::kEnablePasswordGeneration, |
| 771 switches::kEnablePlatformApps, | 772 switches::kEnablePlatformApps, |
| 772 switches::kEnableWatchdog, | 773 switches::kEnableWatchdog, |
| 773 switches::kExperimentalSpellcheckerFeatures, | 774 switches::kExperimentalSpellcheckerFeatures, |
| 774 switches::kMemoryProfiling, | 775 switches::kMemoryProfiling, |
| 775 switches::kMessageLoopHistogrammer, | 776 switches::kMessageLoopHistogrammer, |
| 776 switches::kNoJsRandomness, | 777 switches::kNoJsRandomness, |
| 777 switches::kNoRunningInsecureContent, | 778 switches::kNoRunningInsecureContent, |
| 778 switches::kPlaybackMode, | 779 switches::kPlaybackMode, |
| 779 switches::kPpapiFlashArgs, | 780 switches::kPpapiFlashArgs, |
| (...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1623 #if defined(USE_NSS) | 1624 #if defined(USE_NSS) |
| 1624 crypto::CryptoModuleBlockingPasswordDelegate* | 1625 crypto::CryptoModuleBlockingPasswordDelegate* |
| 1625 ChromeContentBrowserClient::GetCryptoPasswordDelegate( | 1626 ChromeContentBrowserClient::GetCryptoPasswordDelegate( |
| 1626 const GURL& url) { | 1627 const GURL& url) { |
| 1627 return browser::NewCryptoModuleBlockingDialogDelegate( | 1628 return browser::NewCryptoModuleBlockingDialogDelegate( |
| 1628 browser::kCryptoModulePasswordKeygen, url.host()); | 1629 browser::kCryptoModulePasswordKeygen, url.host()); |
| 1629 } | 1630 } |
| 1630 #endif | 1631 #endif |
| 1631 | 1632 |
| 1632 } // namespace chrome | 1633 } // namespace chrome |
| OLD | NEW |