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

Side by Side Diff: chrome/browser/renderer_host/browser_render_process_host.cc

Issue 2080016: Don't use command line flags for enabling the internal pdf plugin. Instead, ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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 | « chrome/browser/plugin_service.cc ('k') | chrome/common/chrome_plugin_lib.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "chrome/browser/renderer_host/browser_render_process_host.h" 8 #include "chrome/browser/renderer_host/browser_render_process_host.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 switches::kMessageLoopHistogrammer, 533 switches::kMessageLoopHistogrammer,
534 switches::kEnableDCHECK, 534 switches::kEnableDCHECK,
535 switches::kSilentDumpOnDCHECK, 535 switches::kSilentDumpOnDCHECK,
536 switches::kUseLowFragHeapCrt, 536 switches::kUseLowFragHeapCrt,
537 switches::kEnableStatsTable, 537 switches::kEnableStatsTable,
538 switches::kExperimentalSpellcheckerFeatures, 538 switches::kExperimentalSpellcheckerFeatures,
539 switches::kDisableAudio, 539 switches::kDisableAudio,
540 switches::kSimpleDataSource, 540 switches::kSimpleDataSource,
541 switches::kEnableBenchmarking, 541 switches::kEnableBenchmarking,
542 switches::kInternalNaCl, 542 switches::kInternalNaCl,
543 switches::kInternalPDF,
544 switches::kInternalPepper, 543 switches::kInternalPepper,
545 switches::kRegisterPepperPlugins, 544 switches::kRegisterPepperPlugins,
546 switches::kDisableByteRangeSupport, 545 switches::kDisableByteRangeSupport,
547 switches::kDisableDatabases, 546 switches::kDisableDatabases,
548 switches::kDisableDesktopNotifications, 547 switches::kDisableDesktopNotifications,
549 switches::kDisableWebSockets, 548 switches::kDisableWebSockets,
550 switches::kDisableLocalStorage, 549 switches::kDisableLocalStorage,
551 switches::kDisableSessionStorage, 550 switches::kDisableSessionStorage,
552 switches::kDisableSharedWorkers, 551 switches::kDisableSharedWorkers,
553 switches::kDisableApplicationCache, 552 switches::kDisableApplicationCache,
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 IPC::InvalidPlatformFileForTransit(), 1060 IPC::InvalidPlatformFileForTransit(),
1062 std::vector<std::string>(), 1061 std::vector<std::string>(),
1063 std::string(), 1062 std::string(),
1064 false)); 1063 false));
1065 } 1064 }
1066 } 1065 }
1067 1066
1068 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { 1067 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) {
1069 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); 1068 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable));
1070 } 1069 }
OLDNEW
« no previous file with comments | « chrome/browser/plugin_service.cc ('k') | chrome/common/chrome_plugin_lib.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698