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

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

Issue 1939253002: Turn on enable begin frame scheduling by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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 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 1502 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 switches::kUseGL, 1513 switches::kUseGL,
1514 switches::kUseMobileUserAgent, 1514 switches::kUseMobileUserAgent,
1515 switches::kUseRemoteCompositing, 1515 switches::kUseRemoteCompositing,
1516 switches::kV, 1516 switches::kV,
1517 switches::kV8CacheStrategiesForCacheStorage, 1517 switches::kV8CacheStrategiesForCacheStorage,
1518 switches::kVideoThreads, 1518 switches::kVideoThreads,
1519 switches::kVideoUnderflowThresholdMs, 1519 switches::kVideoUnderflowThresholdMs,
1520 switches::kVModule, 1520 switches::kVModule,
1521 // Please keep these in alphabetical order. Compositor switches here should 1521 // Please keep these in alphabetical order. Compositor switches here should
1522 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1522 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1523 cc::switches::kDisableBeginFrameScheduling,
1523 cc::switches::kDisableCachedPictureRaster, 1524 cc::switches::kDisableCachedPictureRaster,
1524 cc::switches::kDisableCompositedAntialiasing, 1525 cc::switches::kDisableCompositedAntialiasing,
1525 cc::switches::kDisableThreadedAnimation, 1526 cc::switches::kDisableThreadedAnimation,
1526 cc::switches::kEnableBeginFrameScheduling,
1527 cc::switches::kEnableGpuBenchmarking, 1527 cc::switches::kEnableGpuBenchmarking,
1528 cc::switches::kEnableLayerLists, 1528 cc::switches::kEnableLayerLists,
1529 cc::switches::kEnableTileCompression, 1529 cc::switches::kEnableTileCompression,
1530 cc::switches::kShowCompositedLayerBorders, 1530 cc::switches::kShowCompositedLayerBorders,
1531 cc::switches::kShowFPSCounter, 1531 cc::switches::kShowFPSCounter,
1532 cc::switches::kShowLayerAnimationBounds, 1532 cc::switches::kShowLayerAnimationBounds,
1533 cc::switches::kShowPropertyChangedRects, 1533 cc::switches::kShowPropertyChangedRects,
1534 cc::switches::kShowReplicaScreenSpaceRects, 1534 cc::switches::kShowReplicaScreenSpaceRects,
1535 cc::switches::kShowScreenSpaceRects, 1535 cc::switches::kShowScreenSpaceRects,
1536 cc::switches::kShowSurfaceDamageRects, 1536 cc::switches::kShowSurfaceDamageRects,
(...skipping 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after
2763 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2763 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2764 2764
2765 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2765 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2766 // enough information here so that we can determine what the bad message was. 2766 // enough information here so that we can determine what the bad message was.
2767 base::debug::Alias(&error); 2767 base::debug::Alias(&error);
2768 bad_message::ReceivedBadMessage(process.get(), 2768 bad_message::ReceivedBadMessage(process.get(),
2769 bad_message::RPH_MOJO_PROCESS_ERROR); 2769 bad_message::RPH_MOJO_PROCESS_ERROR);
2770 } 2770 }
2771 2771
2772 } // namespace content 2772 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/compositor/browser_compositor_output_surface.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698