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

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

Issue 4016003: Merge 63535 - Disable GPU features AcceleratingCompositing and WebGL by defau... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/552/src/
Patch Set: Created 10 years, 2 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
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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 switches::kEnableVideoLayering, 593 switches::kEnableVideoLayering,
594 switches::kEnableVideoLogging, 594 switches::kEnableVideoLogging,
595 switches::kEnableTouch, 595 switches::kEnableTouch,
596 // We propagate the Chrome Frame command line here as well in case the 596 // We propagate the Chrome Frame command line here as well in case the
597 // renderer is not run in the sandbox. 597 // renderer is not run in the sandbox.
598 switches::kChromeFrame, 598 switches::kChromeFrame,
599 // We need to propagate this flag to determine whether to make the 599 // We need to propagate this flag to determine whether to make the
600 // WebGLArray constructors on the DOMWindow visible. This 600 // WebGLArray constructors on the DOMWindow visible. This
601 // information is needed very early during bringup. We prefer to 601 // information is needed very early during bringup. We prefer to
602 // use the WebPreferences to set this flag on a page-by-page basis. 602 // use the WebPreferences to set this flag on a page-by-page basis.
603 switches::kDisableExperimentalWebGL, 603 switches::kEnableExperimentalWebGL,
604 switches::kDisableGLSLTranslator, 604 switches::kDisableGLSLTranslator,
605 switches::kInProcessWebGL, 605 switches::kInProcessWebGL,
606 switches::kDisableAcceleratedCompositing, 606 switches::kEnableAcceleratedCompositing,
607 #if defined(OS_MACOSX) 607 #if defined(OS_MACOSX)
608 // Allow this to be set when invoking the browser and relayed along. 608 // Allow this to be set when invoking the browser and relayed along.
609 switches::kEnableSandboxLogging, 609 switches::kEnableSandboxLogging,
610 switches::kDisableFlashCoreAnimation, 610 switches::kDisableFlashCoreAnimation,
611 #endif 611 #endif
612 switches::kRemoteShellPort, 612 switches::kRemoteShellPort,
613 switches::kEnablePepperTesting, 613 switches::kEnablePepperTesting,
614 switches::kBlockNonSandboxedPlugins, 614 switches::kBlockNonSandboxedPlugins,
615 switches::kDisableOutdatedPlugins, 615 switches::kDisableOutdatedPlugins,
616 switches::kEnableRemoting, 616 switches::kEnableRemoting,
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 IPC::InvalidPlatformFileForTransit(), 1126 IPC::InvalidPlatformFileForTransit(),
1127 std::vector<std::string>(), 1127 std::vector<std::string>(),
1128 std::string(), 1128 std::string(),
1129 false)); 1129 false));
1130 } 1130 }
1131 } 1131 }
1132 1132
1133 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) { 1133 void BrowserRenderProcessHost::EnableAutoSpellCorrect(bool enable) {
1134 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable)); 1134 Send(new ViewMsg_SpellChecker_EnableAutoSpellCorrect(enable));
1135 } 1135 }
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/tab_contents/render_view_host_delegate_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698