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

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

Issue 571963003: Add a flag to disable threaded scrolling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add warning Created 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 switches::kDisableLocalStorage, 1098 switches::kDisableLocalStorage,
1099 switches::kDisableLogging, 1099 switches::kDisableLogging,
1100 switches::kDisableMediaSource, 1100 switches::kDisableMediaSource,
1101 switches::kDisableOverlayScrollbar, 1101 switches::kDisableOverlayScrollbar,
1102 switches::kDisablePinch, 1102 switches::kDisablePinch,
1103 switches::kDisablePrefixedEncryptedMedia, 1103 switches::kDisablePrefixedEncryptedMedia,
1104 switches::kDisableSeccompFilterSandbox, 1104 switches::kDisableSeccompFilterSandbox,
1105 switches::kDisableSessionStorage, 1105 switches::kDisableSessionStorage,
1106 switches::kDisableSharedWorkers, 1106 switches::kDisableSharedWorkers,
1107 switches::kDisableThreadedCompositing, 1107 switches::kDisableThreadedCompositing,
1108 switches::kDisableThreadedScrolling,
1108 switches::kDisableTouchAdjustment, 1109 switches::kDisableTouchAdjustment,
1109 switches::kDisableTouchDragDrop, 1110 switches::kDisableTouchDragDrop,
1110 switches::kDisableTouchEditing, 1111 switches::kDisableTouchEditing,
1111 switches::kDisableV8IdleNotificationAfterCommit, 1112 switches::kDisableV8IdleNotificationAfterCommit,
1112 switches::kDisableZeroCopy, 1113 switches::kDisableZeroCopy,
1113 switches::kDomAutomationController, 1114 switches::kDomAutomationController,
1114 switches::kEnableBeginFrameScheduling, 1115 switches::kEnableBeginFrameScheduling,
1115 switches::kEnableBleedingEdgeRenderingFastPaths, 1116 switches::kEnableBleedingEdgeRenderingFastPaths,
1116 switches::kEnablePreferCompositingToLCDText, 1117 switches::kEnablePreferCompositingToLCDText,
1117 switches::kEnableCompositingForTransition, 1118 switches::kEnableCompositingForTransition,
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after
2235 if (worker_ref_count_ == 0) 2236 if (worker_ref_count_ == 0)
2236 Cleanup(); 2237 Cleanup();
2237 } 2238 }
2238 2239
2239 void RenderProcessHostImpl::EnsureMojoActivated() { 2240 void RenderProcessHostImpl::EnsureMojoActivated() {
2240 mojo_activation_required_ = true; 2241 mojo_activation_required_ = true;
2241 MaybeActivateMojo(); 2242 MaybeActivateMojo();
2242 } 2243 }
2243 2244
2244 } // namespace content 2245 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698