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

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

Issue 8542001: Insert default stylesheet for platform apps. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Nit from mihaip. Created 9 years, 1 month 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/browser/extensions/extension_service.cc » ('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) 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
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698