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

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

Issue 662973003: Add --root-layer-scrolls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 ::switches::kGpuSandboxFailuresFatal, 125 ::switches::kGpuSandboxFailuresFatal,
126 ::switches::kGpuSandboxStartEarly, 126 ::switches::kGpuSandboxStartEarly,
127 ::switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, 127 ::switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode,
128 ::switches::kNoSandbox, 128 ::switches::kNoSandbox,
129 ::switches::kNumRasterThreads, 129 ::switches::kNumRasterThreads,
130 ::switches::kPpapiFlashArgs, 130 ::switches::kPpapiFlashArgs,
131 ::switches::kPpapiFlashPath, 131 ::switches::kPpapiFlashPath,
132 ::switches::kPpapiFlashVersion, 132 ::switches::kPpapiFlashVersion,
133 ::switches::kPpapiInProcess, 133 ::switches::kPpapiInProcess,
134 ::switches::kRendererStartupDialog, 134 ::switches::kRendererStartupDialog,
135 ::switches::kRootLayerScrolls,
135 ::switches::kEnableShareGroupAsyncTextureUpload, 136 ::switches::kEnableShareGroupAsyncTextureUpload,
136 ::switches::kTabCaptureUpscaleQuality, 137 ::switches::kTabCaptureUpscaleQuality,
137 ::switches::kTabCaptureDownscaleQuality, 138 ::switches::kTabCaptureDownscaleQuality,
138 #if defined(USE_XI2_MT) || defined(USE_OZONE) 139 #if defined(USE_XI2_MT) || defined(USE_OZONE)
139 ::switches::kTouchCalibration, 140 ::switches::kTouchCalibration,
140 #endif 141 #endif
141 ::switches::kTouchDevices, 142 ::switches::kTouchDevices,
142 ::switches::kTouchEvents, 143 ::switches::kTouchEvents,
143 ::switches::kUIDisableThreadedCompositing, 144 ::switches::kUIDisableThreadedCompositing,
144 ::switches::kUIPrioritizeInGpuProcess, 145 ::switches::kUIPrioritizeInGpuProcess,
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 // Relaunch chrome without session manager on dev box. 377 // Relaunch chrome without session manager on dev box.
377 ReLaunch(command_line); 378 ReLaunch(command_line);
378 return; 379 return;
379 } 380 }
380 381
381 // ChromeRestartRequest deletes itself after request sent to session manager. 382 // ChromeRestartRequest deletes itself after request sent to session manager.
382 (new ChromeRestartRequest(command_line))->Start(); 383 (new ChromeRestartRequest(command_line))->Start();
383 } 384 }
384 385
385 } // namespace chromeos 386 } // 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