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

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

Issue 4643007: Move click-to-play to about:flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments Created 10 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
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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 switches::kDisableAcceleratedCompositing, 612 switches::kDisableAcceleratedCompositing,
613 #if defined(OS_MACOSX) 613 #if defined(OS_MACOSX)
614 // Allow this to be set when invoking the browser and relayed along. 614 // Allow this to be set when invoking the browser and relayed along.
615 switches::kEnableSandboxLogging, 615 switches::kEnableSandboxLogging,
616 #endif 616 #endif
617 switches::kRemoteShellPort, 617 switches::kRemoteShellPort,
618 switches::kEnablePepperTesting, 618 switches::kEnablePepperTesting,
619 switches::kBlockNonSandboxedPlugins, 619 switches::kBlockNonSandboxedPlugins,
620 switches::kDisableOutdatedPlugins, 620 switches::kDisableOutdatedPlugins,
621 switches::kEnableRemoting, 621 switches::kEnableRemoting,
622 switches::kDisableClickToPlay, 622 switches::kEnableClickToPlay,
623 switches::kEnableResourceContentSettings, 623 switches::kEnableResourceContentSettings,
624 switches::kPrelaunchGpuProcess, 624 switches::kPrelaunchGpuProcess,
625 switches::kEnableAcceleratedDecoding, 625 switches::kEnableAcceleratedDecoding,
626 switches::kDisableFileSystem, 626 switches::kDisableFileSystem,
627 switches::kPpapiOutOfProcess 627 switches::kPpapiOutOfProcess
628 }; 628 };
629 renderer_cmd->CopySwitchesFrom(browser_cmd, kSwitchNames, 629 renderer_cmd->CopySwitchesFrom(browser_cmd, kSwitchNames,
630 arraysize(kSwitchNames)); 630 arraysize(kSwitchNames));
631 631
632 // Disable databases in incognito mode. 632 // Disable databases in incognito mode.
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 IPC::InvalidPlatformFileForTransit(), 1147 IPC::InvalidPlatformFileForTransit(),
1148 std::vector<std::string>(), 1148 std::vector<std::string>(),
1149 std::string(), 1149 std::string(),
1150 false)); 1150 false));
1151 } 1151 }
1152 } 1152 }
1153 1153
1154 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { 1154 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) {
1155 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); 1155 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable));
1156 } 1156 }
OLDNEW
« no previous file with comments | « chrome/browser/host_content_settings_map_unittest.cc ('k') | chrome/browser/ui/views/options/content_filter_page_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698