Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 99 ::switches::kEnableGestureTapHighlight, | 99 ::switches::kEnableGestureTapHighlight, |
| 100 ::switches::kDisableGestureTapHighlight, | 100 ::switches::kDisableGestureTapHighlight, |
| 101 ::switches::kDisableGpuSandbox, | 101 ::switches::kDisableGpuSandbox, |
| 102 ::switches::kEnableLogging, | 102 ::switches::kEnableLogging, |
| 103 ::switches::kEnablePinch, | 103 ::switches::kEnablePinch, |
| 104 ::switches::kEnableThreadedCompositing, | 104 ::switches::kEnableThreadedCompositing, |
| 105 ::switches::kEnableTouchDragDrop, | 105 ::switches::kEnableTouchDragDrop, |
| 106 ::switches::kEnableTouchEditing, | 106 ::switches::kEnableTouchEditing, |
| 107 ::switches::kEnableUniversalAcceleratedOverflowScroll, | 107 ::switches::kEnableUniversalAcceleratedOverflowScroll, |
| 108 ::switches::kEnableViewport, | 108 ::switches::kEnableViewport, |
| 109 ::switches::kEnableViewportMeta, | |
| 110 ::switches::kScaleViewportOnResize, | |
|
kenneth.r.christiansen
2013/10/25 06:27:01
It cannot always scale and will overflow. Not sure
bokan
2013/10/25 17:19:33
On desktop, if viewport is enabled and we have thi
| |
| 109 ::switches::kForceDeviceScaleFactor, | 111 ::switches::kForceDeviceScaleFactor, |
| 110 ::switches::kGpuStartupDialog, | 112 ::switches::kGpuStartupDialog, |
| 111 ::switches::kGpuSandboxAllowSysVShm, | 113 ::switches::kGpuSandboxAllowSysVShm, |
| 112 ::switches::kMultiProfiles, | 114 ::switches::kMultiProfiles, |
| 113 ::switches::kNoSandbox, | 115 ::switches::kNoSandbox, |
| 114 ::switches::kPpapiFlashArgs, | 116 ::switches::kPpapiFlashArgs, |
| 115 ::switches::kPpapiFlashInProcess, | 117 ::switches::kPpapiFlashInProcess, |
| 116 ::switches::kPpapiFlashPath, | 118 ::switches::kPpapiFlashPath, |
| 117 ::switches::kPpapiFlashVersion, | 119 ::switches::kPpapiFlashVersion, |
| 118 ::switches::kPpapiInProcess, | 120 ::switches::kPpapiInProcess, |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 361 // Relaunch chrome without session manager on dev box. | 363 // Relaunch chrome without session manager on dev box. |
| 362 ReLaunch(command_line); | 364 ReLaunch(command_line); |
| 363 return; | 365 return; |
| 364 } | 366 } |
| 365 | 367 |
| 366 // ChromeRestartRequest deletes itself after request sent to session manager. | 368 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 367 (new ChromeRestartRequest(command_line))->Start(); | 369 (new ChromeRestartRequest(command_line))->Start(); |
| 368 } | 370 } |
| 369 | 371 |
| 370 } // namespace chromeos | 372 } // namespace chromeos |
| OLD | NEW |