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

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

Issue 2086363004: mac: Finish plumbing for Pepper3D Image Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp98_native_gmb
Patch Set: Rebase error. 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.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 <vector> 7 #include <vector>
8 8
9 #include "ash/common/ash_switches.h" 9 #include "ash/common/ash_switches.h"
10 #include "base/base_switches.h" 10 #include "base/base_switches.h"
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 ::switches::kDisableDistanceFieldText, 84 ::switches::kDisableDistanceFieldText,
85 ::switches::kDisableGpu, 85 ::switches::kDisableGpu,
86 ::switches::kDisableGpuAsyncWorkerContext, 86 ::switches::kDisableGpuAsyncWorkerContext,
87 ::switches::kDisableGpuMemoryBufferVideoFrames, 87 ::switches::kDisableGpuMemoryBufferVideoFrames,
88 ::switches::kDisableGpuShaderDiskCache, 88 ::switches::kDisableGpuShaderDiskCache,
89 ::switches::kUsePassthroughCmdDecoder, 89 ::switches::kUsePassthroughCmdDecoder,
90 ::switches::kDisableGpuWatchdog, 90 ::switches::kDisableGpuWatchdog,
91 ::switches::kDisableGpuCompositing, 91 ::switches::kDisableGpuCompositing,
92 ::switches::kDisableGpuRasterization, 92 ::switches::kDisableGpuRasterization,
93 ::switches::kDisableLowResTiling, 93 ::switches::kDisableLowResTiling,
94 ::switches::kDisablePepper3DImageChromium,
94 ::switches::kDisablePreferCompositingToLCDText, 95 ::switches::kDisablePreferCompositingToLCDText,
95 ::switches::kDisablePanelFitting, 96 ::switches::kDisablePanelFitting,
96 ::switches::kDisableRGBA4444Textures, 97 ::switches::kDisableRGBA4444Textures,
97 ::switches::kDisableSeccompFilterSandbox, 98 ::switches::kDisableSeccompFilterSandbox,
98 ::switches::kDisableSetuidSandbox, 99 ::switches::kDisableSetuidSandbox,
99 ::switches::kDisableThreadedScrolling, 100 ::switches::kDisableThreadedScrolling,
100 ::switches::kDisableTouchDragDrop, 101 ::switches::kDisableTouchDragDrop,
101 ::switches::kDisableZeroCopy, 102 ::switches::kDisableZeroCopy,
102 ::switches::kEnableBlinkFeatures, 103 ::switches::kEnableBlinkFeatures,
103 ::switches::kDisableDisplayList2dCanvas, 104 ::switches::kDisableDisplayList2dCanvas,
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 // Relaunch chrome without session manager on dev box. 360 // Relaunch chrome without session manager on dev box.
360 ReLaunch(command_line); 361 ReLaunch(command_line);
361 return; 362 return;
362 } 363 }
363 364
364 // ChromeRestartRequest deletes itself after request sent to session manager. 365 // ChromeRestartRequest deletes itself after request sent to session manager.
365 (new ChromeRestartRequest(command_line.argv()))->Start(); 366 (new ChromeRestartRequest(command_line.argv()))->Start();
366 } 367 }
367 368
368 } // namespace chromeos 369 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698