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

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

Issue 2530503003: Add --enable-true-color-rendering flag (Closed)
Patch Set: Rebase Created 4 years 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 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1763 switches::kVModule, 1763 switches::kVModule,
1764 // Please keep these in alphabetical order. Compositor switches here should 1764 // Please keep these in alphabetical order. Compositor switches here should
1765 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1765 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1766 cc::switches::kDisableCachedPictureRaster, 1766 cc::switches::kDisableCachedPictureRaster,
1767 cc::switches::kDisableCompositedAntialiasing, 1767 cc::switches::kDisableCompositedAntialiasing,
1768 cc::switches::kDisableThreadedAnimation, 1768 cc::switches::kDisableThreadedAnimation,
1769 cc::switches::kEnableColorCorrectRendering, 1769 cc::switches::kEnableColorCorrectRendering,
1770 cc::switches::kEnableGpuBenchmarking, 1770 cc::switches::kEnableGpuBenchmarking,
1771 cc::switches::kEnableLayerLists, 1771 cc::switches::kEnableLayerLists,
1772 cc::switches::kEnableTileCompression, 1772 cc::switches::kEnableTileCompression,
1773 cc::switches::kEnableTrueColorRendering,
1773 cc::switches::kShowCompositedLayerBorders, 1774 cc::switches::kShowCompositedLayerBorders,
1774 cc::switches::kShowFPSCounter, 1775 cc::switches::kShowFPSCounter,
1775 cc::switches::kShowLayerAnimationBounds, 1776 cc::switches::kShowLayerAnimationBounds,
1776 cc::switches::kShowPropertyChangedRects, 1777 cc::switches::kShowPropertyChangedRects,
1777 cc::switches::kShowScreenSpaceRects, 1778 cc::switches::kShowScreenSpaceRects,
1778 cc::switches::kShowSurfaceDamageRects, 1779 cc::switches::kShowSurfaceDamageRects,
1779 cc::switches::kSlowDownRasterScaleFactor, 1780 cc::switches::kSlowDownRasterScaleFactor,
1780 cc::switches::kBrowserControlsHideThreshold, 1781 cc::switches::kBrowserControlsHideThreshold,
1781 cc::switches::kBrowserControlsShowThreshold, 1782 cc::switches::kBrowserControlsShowThreshold,
1782 1783
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
2999 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 3000 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
3000 3001
3001 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 3002 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
3002 // enough information here so that we can determine what the bad message was. 3003 // enough information here so that we can determine what the bad message was.
3003 base::debug::Alias(&error); 3004 base::debug::Alias(&error);
3004 bad_message::ReceivedBadMessage(render_process_id, 3005 bad_message::ReceivedBadMessage(render_process_id,
3005 bad_message::RPH_MOJO_PROCESS_ERROR); 3006 bad_message::RPH_MOJO_PROCESS_ERROR);
3006 } 3007 }
3007 3008
3008 } // namespace content 3009 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698