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/renderer_host/browser_render_process_host.cc

Issue 475004: Revert 34161 - Enable Pepper support by default, including building the test ... (Closed) Base URL: svn://svn.chromium.org/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,
521 switches::kDisableByteRangeSupport, 520 switches::kDisableByteRangeSupport,
522 switches::kDisableDatabases, 521 switches::kDisableDatabases,
523 switches::kDisableDesktopNotifications, 522 switches::kDisableDesktopNotifications,
524 switches::kDisableWebSockets, 523 switches::kDisableWebSockets,
525 switches::kDisableLocalStorage, 524 switches::kDisableLocalStorage,
526 switches::kEnableSessionStorage, 525 switches::kEnableSessionStorage,
527 switches::kDisableSharedWorkers, 526 switches::kDisableSharedWorkers,
528 switches::kEnableApplicationCache, 527 switches::kEnableApplicationCache,
529 switches::kShowPaintRects, 528 switches::kShowPaintRects,
530 // We propagate the Chrome Frame command line here as well in case the 529 // 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
1004 IPC::PlatformFileForTransit(), 1003 IPC::PlatformFileForTransit(),
1005 std::vector<std::string>(), 1004 std::vector<std::string>(),
1006 std::string(), 1005 std::string(),
1007 false)); 1006 false));
1008 } 1007 }
1009 } 1008 }
1010 1009
1011 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { 1010 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) {
1012 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); 1011 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable));
1013 } 1012 }
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