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

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

Issue 2122573003: media: replace LUMINANCE_F16 by RG_88 for 9/10-bit h264 videos Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: introduce --disable-half-float-conversion-texture flag Created 4 years, 2 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 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after
1777 switches::kVModule, 1777 switches::kVModule,
1778 // Please keep these in alphabetical order. Compositor switches here should 1778 // Please keep these in alphabetical order. Compositor switches here should
1779 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1779 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1780 cc::switches::kDisableCachedPictureRaster, 1780 cc::switches::kDisableCachedPictureRaster,
1781 cc::switches::kDisableCompositedAntialiasing, 1781 cc::switches::kDisableCompositedAntialiasing,
1782 cc::switches::kDisableThreadedAnimation, 1782 cc::switches::kDisableThreadedAnimation,
1783 cc::switches::kEnableColorCorrectRendering, 1783 cc::switches::kEnableColorCorrectRendering,
1784 cc::switches::kEnableGpuBenchmarking, 1784 cc::switches::kEnableGpuBenchmarking,
1785 cc::switches::kEnableLayerLists, 1785 cc::switches::kEnableLayerLists,
1786 cc::switches::kEnableTileCompression, 1786 cc::switches::kEnableTileCompression,
1787 cc::switches::kDisableHalfFloatConversionTexture,
1787 cc::switches::kShowCompositedLayerBorders, 1788 cc::switches::kShowCompositedLayerBorders,
1788 cc::switches::kShowFPSCounter, 1789 cc::switches::kShowFPSCounter,
1789 cc::switches::kShowLayerAnimationBounds, 1790 cc::switches::kShowLayerAnimationBounds,
1790 cc::switches::kShowPropertyChangedRects, 1791 cc::switches::kShowPropertyChangedRects,
1791 cc::switches::kShowReplicaScreenSpaceRects, 1792 cc::switches::kShowReplicaScreenSpaceRects,
1792 cc::switches::kShowScreenSpaceRects, 1793 cc::switches::kShowScreenSpaceRects,
1793 cc::switches::kShowSurfaceDamageRects, 1794 cc::switches::kShowSurfaceDamageRects,
1794 cc::switches::kSlowDownRasterScaleFactor, 1795 cc::switches::kSlowDownRasterScaleFactor,
1795 cc::switches::kTopControlsHideThreshold, 1796 cc::switches::kTopControlsHideThreshold,
1796 cc::switches::kTopControlsShowThreshold, 1797 cc::switches::kTopControlsShowThreshold,
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after
3040 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 3041 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
3041 3042
3042 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 3043 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
3043 // enough information here so that we can determine what the bad message was. 3044 // enough information here so that we can determine what the bad message was.
3044 base::debug::Alias(&error); 3045 base::debug::Alias(&error);
3045 bad_message::ReceivedBadMessage(process.get(), 3046 bad_message::ReceivedBadMessage(process.get(),
3046 bad_message::RPH_MOJO_PROCESS_ERROR); 3047 bad_message::RPH_MOJO_PROCESS_ERROR);
3047 } 3048 }
3048 3049
3049 } // namespace content 3050 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698