Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 10222017: Make password generation switched by a preference in chrome settings rather than a command line fla… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 switches::kDisableBundledPpapiFlash, 762 switches::kDisableBundledPpapiFlash,
763 switches::kDumpHistogramsOnExit, 763 switches::kDumpHistogramsOnExit,
764 switches::kEnableAsynchronousSpellChecking, 764 switches::kEnableAsynchronousSpellChecking,
765 switches::kEnableBenchmarking, 765 switches::kEnableBenchmarking,
766 switches::kEnableBundledPpapiFlash, 766 switches::kEnableBundledPpapiFlash,
767 switches::kEnableCrxlessWebApps, 767 switches::kEnableCrxlessWebApps,
768 switches::kEnableExperimentalExtensionApis, 768 switches::kEnableExperimentalExtensionApis,
769 switches::kEnableInBrowserThumbnailing, 769 switches::kEnableInBrowserThumbnailing,
770 switches::kEnableIPCFuzzing, 770 switches::kEnableIPCFuzzing,
771 switches::kEnableNaCl, 771 switches::kEnableNaCl,
772 switches::kEnablePasswordGeneration,
773 switches::kEnablePlatformApps, 772 switches::kEnablePlatformApps,
774 switches::kEnableWatchdog, 773 switches::kEnableWatchdog,
775 switches::kExperimentalSpellcheckerFeatures, 774 switches::kExperimentalSpellcheckerFeatures,
776 switches::kMemoryProfiling, 775 switches::kMemoryProfiling,
777 switches::kMessageLoopHistogrammer, 776 switches::kMessageLoopHistogrammer,
778 switches::kNoJsRandomness, 777 switches::kNoJsRandomness,
779 switches::kNoRunningInsecureContent, 778 switches::kNoRunningInsecureContent,
780 switches::kPlaybackMode, 779 switches::kPlaybackMode,
781 switches::kPpapiFlashArgs, 780 switches::kPpapiFlashArgs,
782 switches::kPpapiFlashInProcess, 781 switches::kPpapiFlashInProcess,
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
1633 #if defined(USE_NSS) 1632 #if defined(USE_NSS)
1634 crypto::CryptoModuleBlockingPasswordDelegate* 1633 crypto::CryptoModuleBlockingPasswordDelegate*
1635 ChromeContentBrowserClient::GetCryptoPasswordDelegate( 1634 ChromeContentBrowserClient::GetCryptoPasswordDelegate(
1636 const GURL& url) { 1635 const GURL& url) {
1637 return browser::NewCryptoModuleBlockingDialogDelegate( 1636 return browser::NewCryptoModuleBlockingDialogDelegate(
1638 browser::kCryptoModulePasswordKeygen, url.host()); 1637 browser::kCryptoModulePasswordKeygen, url.host());
1639 } 1638 }
1640 #endif 1639 #endif
1641 1640
1642 } // namespace chrome 1641 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698