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

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: Histogram update Created 6 years, 3 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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 switches::kDisableLocalStorage, 1104 switches::kDisableLocalStorage,
1105 switches::kDisableLogging, 1105 switches::kDisableLogging,
1106 switches::kDisableMediaSource, 1106 switches::kDisableMediaSource,
1107 switches::kDisableOverlayScrollbar, 1107 switches::kDisableOverlayScrollbar,
1108 switches::kDisablePinch, 1108 switches::kDisablePinch,
1109 switches::kDisablePrefixedEncryptedMedia, 1109 switches::kDisablePrefixedEncryptedMedia,
1110 switches::kDisableSeccompFilterSandbox, 1110 switches::kDisableSeccompFilterSandbox,
1111 switches::kDisableSessionStorage, 1111 switches::kDisableSessionStorage,
1112 switches::kDisableSharedWorkers, 1112 switches::kDisableSharedWorkers,
1113 switches::kDisableThreadedCompositing, 1113 switches::kDisableThreadedCompositing,
1114 switches::kDisableThreadedScrolling,
1114 switches::kDisableTouchAdjustment, 1115 switches::kDisableTouchAdjustment,
1115 switches::kDisableTouchDragDrop, 1116 switches::kDisableTouchDragDrop,
1116 switches::kDisableTouchEditing, 1117 switches::kDisableTouchEditing,
1117 switches::kDisableV8IdleNotificationAfterCommit, 1118 switches::kDisableV8IdleNotificationAfterCommit,
1118 switches::kDisableZeroCopy, 1119 switches::kDisableZeroCopy,
1119 switches::kDomAutomationController, 1120 switches::kDomAutomationController,
1120 switches::kEnableBeginFrameScheduling, 1121 switches::kEnableBeginFrameScheduling,
1121 switches::kEnableBleedingEdgeRenderingFastPaths, 1122 switches::kEnableBleedingEdgeRenderingFastPaths,
1122 switches::kEnablePreferCompositingToLCDText, 1123 switches::kEnablePreferCompositingToLCDText,
1123 switches::kEnableCompositingForTransition, 1124 switches::kEnableCompositingForTransition,
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
2244 if (worker_ref_count_ == 0) 2245 if (worker_ref_count_ == 0)
2245 Cleanup(); 2246 Cleanup();
2246 } 2247 }
2247 2248
2248 void RenderProcessHostImpl::EnsureMojoActivated() { 2249 void RenderProcessHostImpl::EnsureMojoActivated() {
2249 mojo_activation_required_ = true; 2250 mojo_activation_required_ = true;
2250 MaybeActivateMojo(); 2251 MaybeActivateMojo();
2251 } 2252 }
2252 2253
2253 } // namespace content 2254 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698