| 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/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/app/breakpad_mac.h" | 8 #include "chrome/app/breakpad_mac.h" |
| 9 #include "chrome/browser/browser_about_handler.h" | 9 #include "chrome/browser/browser_about_handler.h" |
| 10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 #else | 263 #else |
| 264 // Disabled by default in Chromium builds and on CrOS. | 264 // Disabled by default in Chromium builds and on CrOS. |
| 265 switches::kEnablePrintPreview, | 265 switches::kEnablePrintPreview, |
| 266 #endif | 266 #endif |
| 267 switches::kDomAutomationController, | 267 switches::kDomAutomationController, |
| 268 switches::kDumpHistogramsOnExit, | 268 switches::kDumpHistogramsOnExit, |
| 269 switches::kEnableClickToPlay, | 269 switches::kEnableClickToPlay, |
| 270 switches::kEnableCrxlessWebApps, | 270 switches::kEnableCrxlessWebApps, |
| 271 switches::kEnableExperimentalExtensionApis, | 271 switches::kEnableExperimentalExtensionApis, |
| 272 switches::kEnableInBrowserThumbnailing, | 272 switches::kEnableInBrowserThumbnailing, |
| 273 switches::kEnableInlineWebstoreInstall, |
| 273 switches::kEnableIPCFuzzing, | 274 switches::kEnableIPCFuzzing, |
| 274 switches::kEnableNaCl, | 275 switches::kEnableNaCl, |
| 275 switches::kEnableResourceContentSettings, | 276 switches::kEnableResourceContentSettings, |
| 276 switches::kEnableSearchProviderApiV2, | 277 switches::kEnableSearchProviderApiV2, |
| 277 switches::kEnableWatchdog, | 278 switches::kEnableWatchdog, |
| 278 switches::kExperimentalSpellcheckerFeatures, | 279 switches::kExperimentalSpellcheckerFeatures, |
| 279 switches::kMemoryProfiling, | 280 switches::kMemoryProfiling, |
| 280 switches::kMessageLoopHistogrammer, | 281 switches::kMessageLoopHistogrammer, |
| 281 switches::kPpapiFlashArgs, | 282 switches::kPpapiFlashArgs, |
| 282 switches::kPpapiFlashInProcess, | 283 switches::kPpapiFlashInProcess, |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 #if defined(USE_NSS) | 718 #if defined(USE_NSS) |
| 718 crypto::CryptoModuleBlockingPasswordDelegate* | 719 crypto::CryptoModuleBlockingPasswordDelegate* |
| 719 ChromeContentBrowserClient::GetCryptoPasswordDelegate( | 720 ChromeContentBrowserClient::GetCryptoPasswordDelegate( |
| 720 const GURL& url) { | 721 const GURL& url) { |
| 721 return browser::NewCryptoModuleBlockingDialogDelegate( | 722 return browser::NewCryptoModuleBlockingDialogDelegate( |
| 722 browser::kCryptoModulePasswordKeygen, url.host()); | 723 browser::kCryptoModulePasswordKeygen, url.host()); |
| 723 } | 724 } |
| 724 #endif | 725 #endif |
| 725 | 726 |
| 726 } // namespace chrome | 727 } // namespace chrome |
| OLD | NEW |