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

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

Issue 2945453002: color: Use base::Feature to control color correct rendering (Closed)
Patch Set: Add histogram enum Created 3 years, 6 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 | « chrome/browser/about_flags.cc ('k') | content/browser/gpu/gpu_process_host.cc » ('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 <sys/socket.h> 7 #include <sys/socket.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/ash_switches.h" 10 #include "ash/ash_switches.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ::switches::kDisablePreferCompositingToLCDText, 96 ::switches::kDisablePreferCompositingToLCDText,
97 ::switches::kDisablePanelFitting, 97 ::switches::kDisablePanelFitting,
98 ::switches::kDisableRGBA4444Textures, 98 ::switches::kDisableRGBA4444Textures,
99 ::switches::kDisableSeccompFilterSandbox, 99 ::switches::kDisableSeccompFilterSandbox,
100 ::switches::kDisableSetuidSandbox, 100 ::switches::kDisableSetuidSandbox,
101 ::switches::kDisableSlimmingPaintInvalidation, 101 ::switches::kDisableSlimmingPaintInvalidation,
102 ::switches::kDisableThreadedScrolling, 102 ::switches::kDisableThreadedScrolling,
103 ::switches::kDisableTouchDragDrop, 103 ::switches::kDisableTouchDragDrop,
104 ::switches::kDisableZeroCopy, 104 ::switches::kDisableZeroCopy,
105 ::switches::kEnableBlinkFeatures, 105 ::switches::kEnableBlinkFeatures,
106 ::switches::kEnableColorCorrectRendering,
107 ::switches::kDisableDisplayList2dCanvas, 106 ::switches::kDisableDisplayList2dCanvas,
108 ::switches::kEnableDisplayList2dCanvas, 107 ::switches::kEnableDisplayList2dCanvas,
109 ::switches::kForceDisplayList2dCanvas, 108 ::switches::kForceDisplayList2dCanvas,
110 ::switches::kDisableGpuSandbox, 109 ::switches::kDisableGpuSandbox,
111 ::switches::kEnableDistanceFieldText, 110 ::switches::kEnableDistanceFieldText,
112 ::switches::kEnableGpuMemoryBufferVideoFrames, 111 ::switches::kEnableGpuMemoryBufferVideoFrames,
113 ::switches::kEnableGpuRasterization, 112 ::switches::kEnableGpuRasterization,
114 ::switches::kEnableLogging, 113 ::switches::kEnableLogging,
115 ::switches::kEnableLowResTiling, 114 ::switches::kEnableLowResTiling,
116 ::switches::kDisablePartialRaster, 115 ::switches::kDisablePartialRaster,
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 // Relaunch chrome without session manager on dev box. 389 // Relaunch chrome without session manager on dev box.
391 ReLaunch(command_line); 390 ReLaunch(command_line);
392 return; 391 return;
393 } 392 }
394 393
395 // ChromeRestartRequest deletes itself after request sent to session manager. 394 // ChromeRestartRequest deletes itself after request sent to session manager.
396 (new ChromeRestartRequest(command_line.argv()))->Start(); 395 (new ChromeRestartRequest(command_line.argv()))->Start();
397 } 396 }
398 397
399 } // namespace chromeos 398 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/gpu/gpu_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698