| 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/base_switches.h" | 10 #include "base/base_switches.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ::switches::kEnablePrefixedEncryptedMedia, | 92 ::switches::kEnablePrefixedEncryptedMedia, |
| 93 ::switches::kDisablePanelFitting, | 93 ::switches::kDisablePanelFitting, |
| 94 ::switches::kDisableRGBA4444Textures, | 94 ::switches::kDisableRGBA4444Textures, |
| 95 ::switches::kDisableSeccompFilterSandbox, | 95 ::switches::kDisableSeccompFilterSandbox, |
| 96 ::switches::kDisableSetuidSandbox, | 96 ::switches::kDisableSetuidSandbox, |
| 97 ::switches::kDisableSurfaces, | 97 ::switches::kDisableSurfaces, |
| 98 ::switches::kDisableThreadedScrolling, | 98 ::switches::kDisableThreadedScrolling, |
| 99 ::switches::kDisableTouchDragDrop, | 99 ::switches::kDisableTouchDragDrop, |
| 100 ::switches::kDisableZeroCopy, | 100 ::switches::kDisableZeroCopy, |
| 101 ::switches::kEnableBlinkFeatures, | 101 ::switches::kEnableBlinkFeatures, |
| 102 ::switches::kEnablePointerEvents, |
| 102 ::switches::kDisableDisplayList2dCanvas, | 103 ::switches::kDisableDisplayList2dCanvas, |
| 103 ::switches::kEnableDisplayList2dCanvas, | 104 ::switches::kEnableDisplayList2dCanvas, |
| 104 ::switches::kForceDisplayList2dCanvas, | 105 ::switches::kForceDisplayList2dCanvas, |
| 105 ::switches::kDisableEncryptedMedia, | 106 ::switches::kDisableEncryptedMedia, |
| 106 ::switches::kDisableGpuSandbox, | 107 ::switches::kDisableGpuSandbox, |
| 107 ::switches::kEnableDistanceFieldText, | 108 ::switches::kEnableDistanceFieldText, |
| 108 ::switches::kEnableGpuMemoryBufferVideoFrames, | 109 ::switches::kEnableGpuMemoryBufferVideoFrames, |
| 109 ::switches::kEnableGpuRasterization, | 110 ::switches::kEnableGpuRasterization, |
| 110 ::switches::kEnableImageColorProfiles, | 111 ::switches::kEnableImageColorProfiles, |
| 111 ::switches::kEnableLogging, | 112 ::switches::kEnableLogging, |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 // Relaunch chrome without session manager on dev box. | 357 // Relaunch chrome without session manager on dev box. |
| 357 ReLaunch(command_line); | 358 ReLaunch(command_line); |
| 358 return; | 359 return; |
| 359 } | 360 } |
| 360 | 361 |
| 361 // ChromeRestartRequest deletes itself after request sent to session manager. | 362 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 362 (new ChromeRestartRequest(command_line.argv()))->Start(); | 363 (new ChromeRestartRequest(command_line.argv()))->Start(); |
| 363 } | 364 } |
| 364 | 365 |
| 365 } // namespace chromeos | 366 } // namespace chromeos |
| OLD | NEW |