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

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

Issue 464074: Enable Pepper support by default, including building the test plugin.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years 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 | « build/common.gypi ('k') | chrome/chrome_renderer.gypi » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 switches::kMessageLoopHistogrammer, 510 switches::kMessageLoopHistogrammer,
511 switches::kEnableDCHECK, 511 switches::kEnableDCHECK,
512 switches::kSilentDumpOnDCHECK, 512 switches::kSilentDumpOnDCHECK,
513 switches::kUseLowFragHeapCrt, 513 switches::kUseLowFragHeapCrt,
514 switches::kEnableStatsTable, 514 switches::kEnableStatsTable,
515 switches::kExperimentalSpellcheckerFeatures, 515 switches::kExperimentalSpellcheckerFeatures,
516 switches::kDisableAudio, 516 switches::kDisableAudio,
517 switches::kSimpleDataSource, 517 switches::kSimpleDataSource,
518 switches::kEnableBenchmarking, 518 switches::kEnableBenchmarking,
519 switches::kInternalNaCl, 519 switches::kInternalNaCl,
520 switches::kInternalPepper,
520 switches::kDisableByteRangeSupport, 521 switches::kDisableByteRangeSupport,
521 switches::kDisableDatabases, 522 switches::kDisableDatabases,
522 switches::kDisableDesktopNotifications, 523 switches::kDisableDesktopNotifications,
523 switches::kDisableWebSockets, 524 switches::kDisableWebSockets,
524 switches::kDisableLocalStorage, 525 switches::kDisableLocalStorage,
525 switches::kEnableSessionStorage, 526 switches::kEnableSessionStorage,
526 switches::kDisableSharedWorkers, 527 switches::kDisableSharedWorkers,
527 switches::kEnableApplicationCache, 528 switches::kEnableApplicationCache,
528 switches::kShowPaintRects, 529 switches::kShowPaintRects,
529 // We propagate the Chrome Frame command line here as well in case the 530 // We propagate the Chrome Frame command line here as well in case the
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 IPC::PlatformFileForTransit(), 1004 IPC::PlatformFileForTransit(),
1004 std::vector<std::string>(), 1005 std::vector<std::string>(),
1005 std::string(), 1006 std::string(),
1006 false)); 1007 false));
1007 } 1008 }
1008 } 1009 }
1009 1010
1010 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { 1011 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) {
1011 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); 1012 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable));
1012 } 1013 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698