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

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

Issue 18750003: Require ACK for editor-related changes not originating from browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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
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 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after
1368 switches::kEnableAdview, 1368 switches::kEnableAdview,
1369 switches::kEnableAdviewSrcAttribute, 1369 switches::kEnableAdviewSrcAttribute,
1370 switches::kEnableAppWindowControls, 1370 switches::kEnableAppWindowControls,
1371 switches::kEnableBenchmarking, 1371 switches::kEnableBenchmarking,
1372 switches::kEnableExperimentalExtensionApis, 1372 switches::kEnableExperimentalExtensionApis,
1373 switches::kEnableIPCFuzzing, 1373 switches::kEnableIPCFuzzing,
1374 switches::kEnableNaCl, 1374 switches::kEnableNaCl,
1375 switches::kEnableNetBenchmarking, 1375 switches::kEnableNetBenchmarking,
1376 switches::kEnablePasswordGeneration, 1376 switches::kEnablePasswordGeneration,
1377 switches::kEnablePnacl, 1377 switches::kEnablePnacl,
1378 switches::kEnableStrictImeProcessing,
1378 switches::kEnableWatchdog, 1379 switches::kEnableWatchdog,
1379 switches::kExtensionsOnChromeURLs, 1380 switches::kExtensionsOnChromeURLs,
1380 switches::kMemoryProfiling, 1381 switches::kMemoryProfiling,
1381 switches::kMessageLoopHistogrammer, 1382 switches::kMessageLoopHistogrammer,
1382 switches::kNoJsRandomness, 1383 switches::kNoJsRandomness,
1383 switches::kPlaybackMode, 1384 switches::kPlaybackMode,
1384 switches::kPpapiFlashArgs, 1385 switches::kPpapiFlashArgs,
1385 switches::kPpapiFlashInProcess, 1386 switches::kPpapiFlashInProcess,
1386 switches::kPpapiFlashPath, 1387 switches::kPpapiFlashPath,
1387 switches::kPpapiFlashVersion, 1388 switches::kPpapiFlashVersion,
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after
2420 #if defined(USE_NSS) 2421 #if defined(USE_NSS)
2421 crypto::CryptoModuleBlockingPasswordDelegate* 2422 crypto::CryptoModuleBlockingPasswordDelegate*
2422 ChromeContentBrowserClient::GetCryptoPasswordDelegate( 2423 ChromeContentBrowserClient::GetCryptoPasswordDelegate(
2423 const GURL& url) { 2424 const GURL& url) {
2424 return chrome::NewCryptoModuleBlockingDialogDelegate( 2425 return chrome::NewCryptoModuleBlockingDialogDelegate(
2425 chrome::kCryptoModulePasswordKeygen, url.host()); 2426 chrome::kCryptoModulePasswordKeygen, url.host());
2426 } 2427 }
2427 #endif 2428 #endif
2428 2429
2429 } // namespace chrome 2430 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698