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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2543723002: Add switch to disable WebVR gesture requirement
Patch Set: Addressed ddorwin@'s naming comments Created 4 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 switches::kDisableSeccompFilterSandbox, 1663 switches::kDisableSeccompFilterSandbox,
1664 switches::kDisableSharedWorkers, 1664 switches::kDisableSharedWorkers,
1665 switches::kDisableSmoothScrolling, 1665 switches::kDisableSmoothScrolling,
1666 switches::kDisableSpeechAPI, 1666 switches::kDisableSpeechAPI,
1667 switches::kDisableThreadedCompositing, 1667 switches::kDisableThreadedCompositing,
1668 switches::kDisableThreadedScrolling, 1668 switches::kDisableThreadedScrolling,
1669 switches::kDisableTouchAdjustment, 1669 switches::kDisableTouchAdjustment,
1670 switches::kDisableTouchDragDrop, 1670 switches::kDisableTouchDragDrop,
1671 switches::kDisableV8IdleTasks, 1671 switches::kDisableV8IdleTasks,
1672 switches::kDisableWebGLImageChromium, 1672 switches::kDisableWebGLImageChromium,
1673 switches::kDisableWebVrGestureRequirementForTests,
1673 switches::kDomAutomationController, 1674 switches::kDomAutomationController,
1674 switches::kEnableBlinkFeatures, 1675 switches::kEnableBlinkFeatures,
1675 switches::kEnableBrowserSideNavigation, 1676 switches::kEnableBrowserSideNavigation,
1676 switches::kEnableDisplayList2dCanvas, 1677 switches::kEnableDisplayList2dCanvas,
1677 switches::kEnableDistanceFieldText, 1678 switches::kEnableDistanceFieldText,
1678 switches::kEnableExperimentalCanvasFeatures, 1679 switches::kEnableExperimentalCanvasFeatures,
1679 switches::kEnableExperimentalWebPlatformFeatures, 1680 switches::kEnableExperimentalWebPlatformFeatures,
1680 switches::kEnableHeapProfiling, 1681 switches::kEnableHeapProfiling,
1681 switches::kEnableGPUClientLogging, 1682 switches::kEnableGPUClientLogging,
1682 switches::kEnableGpuClientTracing, 1683 switches::kEnableGpuClientTracing,
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after
3000 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 3001 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
3001 3002
3002 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 3003 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
3003 // enough information here so that we can determine what the bad message was. 3004 // enough information here so that we can determine what the bad message was.
3004 base::debug::Alias(&error); 3005 base::debug::Alias(&error);
3005 bad_message::ReceivedBadMessage(render_process_id, 3006 bad_message::ReceivedBadMessage(render_process_id,
3006 bad_message::RPH_MOJO_PROCESS_ERROR); 3007 bad_message::RPH_MOJO_PROCESS_ERROR);
3007 } 3008 }
3008 3009
3009 } // namespace content 3010 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/child/runtime_features.cc » ('j') | content/public/common/content_switches.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698