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

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

Issue 10392004: Add a runtime switch to control whether NaCl uses the IPC or SRPC Proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698