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 "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "chrome/app/breakpad_mac.h" | 9 #include "chrome/app/breakpad_mac.h" |
10 #include "chrome/browser/browser_about_handler.h" | 10 #include "chrome/browser/browser_about_handler.h" |
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 switches::kDisablePrintPreview, | 570 switches::kDisablePrintPreview, |
571 switches::kDomAutomationController, | 571 switches::kDomAutomationController, |
572 switches::kDumpHistogramsOnExit, | 572 switches::kDumpHistogramsOnExit, |
573 switches::kEnableClickToPlay, | 573 switches::kEnableClickToPlay, |
574 switches::kEnableCrxlessWebApps, | 574 switches::kEnableCrxlessWebApps, |
575 switches::kEnableExperimentalExtensionApis, | 575 switches::kEnableExperimentalExtensionApis, |
576 switches::kEnableInBrowserThumbnailing, | 576 switches::kEnableInBrowserThumbnailing, |
577 switches::kEnableIPCFuzzing, | 577 switches::kEnableIPCFuzzing, |
578 switches::kEnableLazyBackgroundPages, | 578 switches::kEnableLazyBackgroundPages, |
579 switches::kEnableNaCl, | 579 switches::kEnableNaCl, |
| 580 switches::kEnablePlatformApps, |
580 switches::kEnablePrintPreview, | 581 switches::kEnablePrintPreview, |
581 switches::kEnableSearchProviderApiV2, | 582 switches::kEnableSearchProviderApiV2, |
582 switches::kEnableWatchdog, | 583 switches::kEnableWatchdog, |
583 switches::kExperimentalSpellcheckerFeatures, | 584 switches::kExperimentalSpellcheckerFeatures, |
584 switches::kMemoryProfiling, | 585 switches::kMemoryProfiling, |
585 switches::kMessageLoopHistogrammer, | 586 switches::kMessageLoopHistogrammer, |
586 switches::kNoRunningInsecureContent, | 587 switches::kNoRunningInsecureContent, |
587 switches::kPpapiFlashArgs, | 588 switches::kPpapiFlashArgs, |
588 switches::kPpapiFlashInProcess, | 589 switches::kPpapiFlashInProcess, |
589 switches::kPpapiFlashPath, | 590 switches::kPpapiFlashPath, |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1061 #if defined(USE_NSS) | 1062 #if defined(USE_NSS) |
1062 crypto::CryptoModuleBlockingPasswordDelegate* | 1063 crypto::CryptoModuleBlockingPasswordDelegate* |
1063 ChromeContentBrowserClient::GetCryptoPasswordDelegate( | 1064 ChromeContentBrowserClient::GetCryptoPasswordDelegate( |
1064 const GURL& url) { | 1065 const GURL& url) { |
1065 return browser::NewCryptoModuleBlockingDialogDelegate( | 1066 return browser::NewCryptoModuleBlockingDialogDelegate( |
1066 browser::kCryptoModulePasswordKeygen, url.host()); | 1067 browser::kCryptoModulePasswordKeygen, url.host()); |
1067 } | 1068 } |
1068 #endif | 1069 #endif |
1069 | 1070 |
1070 } // namespace chrome | 1071 } // namespace chrome |
OLD | NEW |