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

Side by Side Diff: chrome/browser/chromeos/login/chrome_restart_request.cc

Issue 1381163002: Add a flag to disable partial raster in renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback + UT refactoring Created 5 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
« no previous file with comments | « cc/trees/layer_tree_settings.cc ('k') | content/browser/gpu/compositor_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "chrome/browser/chromeos/login/chrome_restart_request.h" 5 #include "chrome/browser/chromeos/login/chrome_restart_request.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "ash/ash_switches.h" 9 #include "ash/ash_switches.h"
10 #include "base/base_switches.h" 10 #include "base/base_switches.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 ::switches::kDisableCastStreamingHWEncoding, 77 ::switches::kDisableCastStreamingHWEncoding,
78 ::switches::kDisableDistanceFieldText, 78 ::switches::kDisableDistanceFieldText,
79 ::switches::kDisableGpu, 79 ::switches::kDisableGpu,
80 ::switches::kDisableGpuMemoryBufferVideoFrames, 80 ::switches::kDisableGpuMemoryBufferVideoFrames,
81 ::switches::kDisableGpuShaderDiskCache, 81 ::switches::kDisableGpuShaderDiskCache,
82 ::switches::kDisableGpuWatchdog, 82 ::switches::kDisableGpuWatchdog,
83 ::switches::kDisableGpuCompositing, 83 ::switches::kDisableGpuCompositing,
84 ::switches::kDisableGpuRasterization, 84 ::switches::kDisableGpuRasterization,
85 ::switches::kDisableLowResTiling, 85 ::switches::kDisableLowResTiling,
86 ::switches::kDisableMediaSource, 86 ::switches::kDisableMediaSource,
87 ::switches::kDisablePersistentGpuMemoryBuffer,
88 ::switches::kDisablePreferCompositingToLCDText, 87 ::switches::kDisablePreferCompositingToLCDText,
89 ::switches::kEnablePrefixedEncryptedMedia, 88 ::switches::kEnablePrefixedEncryptedMedia,
90 ::switches::kDisablePanelFitting, 89 ::switches::kDisablePanelFitting,
91 ::switches::kDisableRGBA4444Textures, 90 ::switches::kDisableRGBA4444Textures,
92 ::switches::kDisableSeccompFilterSandbox, 91 ::switches::kDisableSeccompFilterSandbox,
93 ::switches::kDisableSetuidSandbox, 92 ::switches::kDisableSetuidSandbox,
94 ::switches::kDisableSurfaces, 93 ::switches::kDisableSurfaces,
95 ::switches::kDisableThreadedScrolling, 94 ::switches::kDisableThreadedScrolling,
96 ::switches::kDisableTouchDragDrop, 95 ::switches::kDisableTouchDragDrop,
97 ::switches::kDisableZeroCopy, 96 ::switches::kDisableZeroCopy,
98 ::switches::kEnableBlinkFeatures, 97 ::switches::kEnableBlinkFeatures,
99 ::switches::kEnableCompositorAnimationTimelines, 98 ::switches::kEnableCompositorAnimationTimelines,
100 ::switches::kDisableDisplayList2dCanvas, 99 ::switches::kDisableDisplayList2dCanvas,
101 ::switches::kEnableDisplayList2dCanvas, 100 ::switches::kEnableDisplayList2dCanvas,
102 ::switches::kForceDisplayList2dCanvas, 101 ::switches::kForceDisplayList2dCanvas,
103 ::switches::kDisableEncryptedMedia, 102 ::switches::kDisableEncryptedMedia,
104 ::switches::kDisableGpuSandbox, 103 ::switches::kDisableGpuSandbox,
105 ::switches::kEnableDistanceFieldText, 104 ::switches::kEnableDistanceFieldText,
106 ::switches::kEnableGpuMemoryBufferVideoFrames, 105 ::switches::kEnableGpuMemoryBufferVideoFrames,
107 ::switches::kEnableGpuRasterization, 106 ::switches::kEnableGpuRasterization,
108 ::switches::kEnableImageColorProfiles, 107 ::switches::kEnableImageColorProfiles,
109 ::switches::kEnableLogging, 108 ::switches::kEnableLogging,
110 ::switches::kEnableLowResTiling, 109 ::switches::kEnableLowResTiling,
111 ::switches::kEnablePersistentGpuMemoryBuffer, 110 ::switches::kEnablePartialRaster,
112 ::switches::kEnablePinch, 111 ::switches::kEnablePinch,
113 ::switches::kEnablePreferCompositingToLCDText, 112 ::switches::kEnablePreferCompositingToLCDText,
114 ::switches::kEnableRGBA4444Textures, 113 ::switches::kEnableRGBA4444Textures,
115 ::switches::kEnableSlimmingPaintV2, 114 ::switches::kEnableSlimmingPaintV2,
116 ::switches::kEnableTouchDragDrop, 115 ::switches::kEnableTouchDragDrop,
117 ::switches::kEnableViewport, 116 ::switches::kEnableViewport,
118 ::switches::kEnableZeroCopy, 117 ::switches::kEnableZeroCopy,
119 #if defined(USE_OZONE) 118 #if defined(USE_OZONE)
120 ::switches::kExtraTouchNoiseFiltering, 119 ::switches::kExtraTouchNoiseFiltering,
121 #endif 120 #endif
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 // Relaunch chrome without session manager on dev box. 348 // Relaunch chrome without session manager on dev box.
350 ReLaunch(command_line); 349 ReLaunch(command_line);
351 return; 350 return;
352 } 351 }
353 352
354 // ChromeRestartRequest deletes itself after request sent to session manager. 353 // ChromeRestartRequest deletes itself after request sent to session manager.
355 (new ChromeRestartRequest(command_line.argv()))->Start(); 354 (new ChromeRestartRequest(command_line.argv()))->Start();
356 } 355 }
357 356
358 } // namespace chromeos 357 } // namespace chromeos
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_settings.cc ('k') | content/browser/gpu/compositor_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698