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

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

Issue 15567005: Plumb pinch virtual viewport flag to CC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased for landing Created 7 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 | Annotate | Revision Log
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/chromeos/chromeos_version.h" 10 #include "base/chromeos/chromeos_version.h"
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 // content/browser/renderer_host/render_process_host_impl.cc. 133 // content/browser/renderer_host/render_process_host_impl.cc.
134 cc::switches::kBackgroundColorInsteadOfCheckerboard, 134 cc::switches::kBackgroundColorInsteadOfCheckerboard,
135 cc::switches::kCompositeToMailbox, 135 cc::switches::kCompositeToMailbox,
136 cc::switches::kDisableColorEstimator, 136 cc::switches::kDisableColorEstimator,
137 cc::switches::kDisableImplSidePainting, 137 cc::switches::kDisableImplSidePainting,
138 cc::switches::kDisableThreadedAnimation, 138 cc::switches::kDisableThreadedAnimation,
139 cc::switches::kEnableCompositorFrameMessage, 139 cc::switches::kEnableCompositorFrameMessage,
140 cc::switches::kEnableImplSidePainting, 140 cc::switches::kEnableImplSidePainting,
141 cc::switches::kEnablePartialSwap, 141 cc::switches::kEnablePartialSwap,
142 cc::switches::kEnablePerTilePainting, 142 cc::switches::kEnablePerTilePainting,
143 cc::switches::kEnablePinchVirtualViewport,
143 cc::switches::kEnableRightAlignedScheduling, 144 cc::switches::kEnableRightAlignedScheduling,
144 cc::switches::kEnableTopControlsPositionCalculation, 145 cc::switches::kEnableTopControlsPositionCalculation,
145 cc::switches::kForceDirectLayerDrawing, 146 cc::switches::kForceDirectLayerDrawing,
146 cc::switches::kLowResolutionContentsScaleFactor, 147 cc::switches::kLowResolutionContentsScaleFactor,
147 cc::switches::kMaxTilesForInterestArea, 148 cc::switches::kMaxTilesForInterestArea,
148 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 149 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
149 cc::switches::kNumRasterThreads, 150 cc::switches::kNumRasterThreads,
150 cc::switches::kShowCompositedLayerBorders, 151 cc::switches::kShowCompositedLayerBorders,
151 cc::switches::kShowCompositedLayerTree, 152 cc::switches::kShowCompositedLayerTree,
152 cc::switches::kShowFPSCounter, 153 cc::switches::kShowFPSCounter,
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 // Relaunch chrome without session manager on dev box. 337 // Relaunch chrome without session manager on dev box.
337 ReLaunch(command_line); 338 ReLaunch(command_line);
338 return; 339 return;
339 } 340 }
340 341
341 // ChromeRestartRequest deletes itself after request sent to session manager. 342 // ChromeRestartRequest deletes itself after request sent to session manager.
342 (new ChromeRestartRequest(command_line))->Start(); 343 (new ChromeRestartRequest(command_line))->Start();
343 } 344 }
344 345
345 } // namespace chromeos 346 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698