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

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

Issue 1462001: Use internal pdf plugin with --internal-pdf (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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_paths.h » ('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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 switches::kMessageLoopHistogrammer, 525 switches::kMessageLoopHistogrammer,
526 switches::kEnableDCHECK, 526 switches::kEnableDCHECK,
527 switches::kSilentDumpOnDCHECK, 527 switches::kSilentDumpOnDCHECK,
528 switches::kUseLowFragHeapCrt, 528 switches::kUseLowFragHeapCrt,
529 switches::kEnableStatsTable, 529 switches::kEnableStatsTable,
530 switches::kExperimentalSpellcheckerFeatures, 530 switches::kExperimentalSpellcheckerFeatures,
531 switches::kDisableAudio, 531 switches::kDisableAudio,
532 switches::kSimpleDataSource, 532 switches::kSimpleDataSource,
533 switches::kEnableBenchmarking, 533 switches::kEnableBenchmarking,
534 switches::kInternalNaCl, 534 switches::kInternalNaCl,
535 switches::kInternalPDF,
535 switches::kInternalPepper, 536 switches::kInternalPepper,
536 switches::kDisableByteRangeSupport, 537 switches::kDisableByteRangeSupport,
537 switches::kDisableDatabases, 538 switches::kDisableDatabases,
538 switches::kDisableDesktopNotifications, 539 switches::kDisableDesktopNotifications,
539 switches::kDisableWebSockets, 540 switches::kDisableWebSockets,
540 switches::kDisableLocalStorage, 541 switches::kDisableLocalStorage,
541 switches::kDisableSessionStorage, 542 switches::kDisableSessionStorage,
542 switches::kDisableSharedWorkers, 543 switches::kDisableSharedWorkers,
543 switches::kDisableApplicationCache, 544 switches::kDisableApplicationCache,
544 switches::kEnableIndexedDatabase, 545 switches::kEnableIndexedDatabase,
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 IPC::InvalidPlatformFileForTransit(), 1025 IPC::InvalidPlatformFileForTransit(),
1025 std::vector<std::string>(), 1026 std::vector<std::string>(),
1026 std::string(), 1027 std::string(),
1027 false)); 1028 false));
1028 } 1029 }
1029 } 1030 }
1030 1031
1031 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { 1032 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) {
1032 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); 1033 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable));
1033 } 1034 }
OLDNEW
« no previous file with comments | « chrome/browser/plugin_service.cc ('k') | chrome/common/chrome_paths.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698