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 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1376 switches::kDisableExtensionsResourceWhitelist, | 1376 switches::kDisableExtensionsResourceWhitelist, |
1377 switches::kDisableScriptedPrintThrottling, | 1377 switches::kDisableScriptedPrintThrottling, |
1378 switches::kEnableAdview, | 1378 switches::kEnableAdview, |
1379 switches::kEnableAdviewSrcAttribute, | 1379 switches::kEnableAdviewSrcAttribute, |
1380 switches::kEnableAppWindowControls, | 1380 switches::kEnableAppWindowControls, |
1381 switches::kEnableBenchmarking, | 1381 switches::kEnableBenchmarking, |
1382 switches::kEnableExperimentalExtensionApis, | 1382 switches::kEnableExperimentalExtensionApis, |
1383 switches::kEnableIPCFuzzing, | 1383 switches::kEnableIPCFuzzing, |
1384 switches::kEnableNaCl, | 1384 switches::kEnableNaCl, |
1385 switches::kEnableNetBenchmarking, | 1385 switches::kEnableNetBenchmarking, |
| 1386 switches::kEnableOrderedImeProcessing, |
1386 switches::kEnablePasswordGeneration, | 1387 switches::kEnablePasswordGeneration, |
1387 switches::kEnablePnacl, | 1388 switches::kEnablePnacl, |
1388 switches::kEnableWatchdog, | 1389 switches::kEnableWatchdog, |
1389 switches::kExtensionsOnChromeURLs, | 1390 switches::kExtensionsOnChromeURLs, |
1390 switches::kMemoryProfiling, | 1391 switches::kMemoryProfiling, |
1391 switches::kMessageLoopHistogrammer, | 1392 switches::kMessageLoopHistogrammer, |
1392 switches::kNoJsRandomness, | 1393 switches::kNoJsRandomness, |
1393 switches::kPlaybackMode, | 1394 switches::kPlaybackMode, |
1394 switches::kPpapiFlashArgs, | 1395 switches::kPpapiFlashArgs, |
1395 switches::kPpapiFlashInProcess, | 1396 switches::kPpapiFlashInProcess, |
(...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2431 #if defined(USE_NSS) | 2432 #if defined(USE_NSS) |
2432 crypto::CryptoModuleBlockingPasswordDelegate* | 2433 crypto::CryptoModuleBlockingPasswordDelegate* |
2433 ChromeContentBrowserClient::GetCryptoPasswordDelegate( | 2434 ChromeContentBrowserClient::GetCryptoPasswordDelegate( |
2434 const GURL& url) { | 2435 const GURL& url) { |
2435 return chrome::NewCryptoModuleBlockingDialogDelegate( | 2436 return chrome::NewCryptoModuleBlockingDialogDelegate( |
2436 chrome::kCryptoModulePasswordKeygen, url.host()); | 2437 chrome::kCryptoModulePasswordKeygen, url.host()); |
2437 } | 2438 } |
2438 #endif | 2439 #endif |
2439 | 2440 |
2440 } // namespace chrome | 2441 } // namespace chrome |
OLD | NEW |