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

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

Issue 1124523003: Revert of Enable BeginFrame scheduling on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 switches::kDisableSeccompFilterSandbox, 1253 switches::kDisableSeccompFilterSandbox,
1254 switches::kDisableSharedWorkers, 1254 switches::kDisableSharedWorkers,
1255 switches::kDisableSVG1DOM, 1255 switches::kDisableSVG1DOM,
1256 switches::kDisableThreadedCompositing, 1256 switches::kDisableThreadedCompositing,
1257 switches::kDisableThreadedScrolling, 1257 switches::kDisableThreadedScrolling,
1258 switches::kDisableTouchAdjustment, 1258 switches::kDisableTouchAdjustment,
1259 switches::kDisableTouchDragDrop, 1259 switches::kDisableTouchDragDrop,
1260 switches::kDisableTouchEditing, 1260 switches::kDisableTouchEditing,
1261 switches::kDisableV8IdleTasks, 1261 switches::kDisableV8IdleTasks,
1262 switches::kDomAutomationController, 1262 switches::kDomAutomationController,
1263 switches::kEnableBeginFrameScheduling,
1263 switches::kEnableBleedingEdgeRenderingFastPaths, 1264 switches::kEnableBleedingEdgeRenderingFastPaths,
1264 switches::kEnableBlinkFeatures, 1265 switches::kEnableBlinkFeatures,
1265 switches::kEnableBrowserSideNavigation, 1266 switches::kEnableBrowserSideNavigation,
1266 switches::kEnableCompositorAnimationTimelines, 1267 switches::kEnableCompositorAnimationTimelines,
1267 switches::kEnableCredentialManagerAPI, 1268 switches::kEnableCredentialManagerAPI,
1268 switches::kEnableDeferredImageDecoding, 1269 switches::kEnableDeferredImageDecoding,
1269 switches::kEnableDelayAgnosticAec, 1270 switches::kEnableDelayAgnosticAec,
1270 switches::kEnableDisplayList2dCanvas, 1271 switches::kEnableDisplayList2dCanvas,
1271 switches::kEnableDistanceFieldText, 1272 switches::kEnableDistanceFieldText,
1272 switches::kEnableExperimentalCanvasFeatures, 1273 switches::kEnableExperimentalCanvasFeatures,
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after
2519 if (font_cache_section.Open(name, true)) { 2520 if (font_cache_section.Open(name, true)) {
2520 font_cache_section.ShareReadOnlyToProcess(GetHandle(), &mapped_handle); 2521 font_cache_section.ShareReadOnlyToProcess(GetHandle(), &mapped_handle);
2521 DCHECK(mapped_handle); 2522 DCHECK(mapped_handle);
2522 } 2523 }
2523 Send(new ViewMsg_DirectWriteFontCacheSectionHandle(mapped_handle)); 2524 Send(new ViewMsg_DirectWriteFontCacheSectionHandle(mapped_handle));
2524 } 2525 }
2525 } 2526 }
2526 #endif 2527 #endif
2527 2528
2528 } // namespace content 2529 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698