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

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

Issue 2100203002: Revert of Turn on enable begin frame scheduling by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1473 switches::kUseGL, 1473 switches::kUseGL,
1474 switches::kUseMobileUserAgent, 1474 switches::kUseMobileUserAgent,
1475 switches::kUseRemoteCompositing, 1475 switches::kUseRemoteCompositing,
1476 switches::kV, 1476 switches::kV,
1477 switches::kV8CacheStrategiesForCacheStorage, 1477 switches::kV8CacheStrategiesForCacheStorage,
1478 switches::kVideoThreads, 1478 switches::kVideoThreads,
1479 switches::kVideoUnderflowThresholdMs, 1479 switches::kVideoUnderflowThresholdMs,
1480 switches::kVModule, 1480 switches::kVModule,
1481 // Please keep these in alphabetical order. Compositor switches here should 1481 // Please keep these in alphabetical order. Compositor switches here should
1482 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1482 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1483 cc::switches::kDisableBeginFrameScheduling,
1484 cc::switches::kDisableCachedPictureRaster, 1483 cc::switches::kDisableCachedPictureRaster,
1485 cc::switches::kDisableCompositedAntialiasing, 1484 cc::switches::kDisableCompositedAntialiasing,
1486 cc::switches::kDisableThreadedAnimation, 1485 cc::switches::kDisableThreadedAnimation,
1486 cc::switches::kEnableBeginFrameScheduling,
1487 cc::switches::kEnableGpuBenchmarking, 1487 cc::switches::kEnableGpuBenchmarking,
1488 cc::switches::kEnableLayerLists, 1488 cc::switches::kEnableLayerLists,
1489 cc::switches::kEnableTileCompression, 1489 cc::switches::kEnableTileCompression,
1490 cc::switches::kShowCompositedLayerBorders, 1490 cc::switches::kShowCompositedLayerBorders,
1491 cc::switches::kShowFPSCounter, 1491 cc::switches::kShowFPSCounter,
1492 cc::switches::kShowLayerAnimationBounds, 1492 cc::switches::kShowLayerAnimationBounds,
1493 cc::switches::kShowPropertyChangedRects, 1493 cc::switches::kShowPropertyChangedRects,
1494 cc::switches::kShowReplicaScreenSpaceRects, 1494 cc::switches::kShowReplicaScreenSpaceRects,
1495 cc::switches::kShowScreenSpaceRects, 1495 cc::switches::kShowScreenSpaceRects,
1496 cc::switches::kShowSurfaceDamageRects, 1496 cc::switches::kShowSurfaceDamageRects,
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after
2814 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2814 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2815 2815
2816 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2816 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2817 // enough information here so that we can determine what the bad message was. 2817 // enough information here so that we can determine what the bad message was.
2818 base::debug::Alias(&error); 2818 base::debug::Alias(&error);
2819 bad_message::ReceivedBadMessage(process.get(), 2819 bad_message::ReceivedBadMessage(process.get(),
2820 bad_message::RPH_MOJO_PROCESS_ERROR); 2820 bad_message::RPH_MOJO_PROCESS_ERROR);
2821 } 2821 }
2822 2822
2823 } // namespace content 2823 } // 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