| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ::switches::kDisableTextBlobs, | 92 ::switches::kDisableTextBlobs, |
| 93 ::switches::kDisableThreadedScrolling, | 93 ::switches::kDisableThreadedScrolling, |
| 94 ::switches::kDisableTouchDragDrop, | 94 ::switches::kDisableTouchDragDrop, |
| 95 ::switches::kDisableTouchEditing, | 95 ::switches::kDisableTouchEditing, |
| 96 ::switches::kEnableBeginFrameScheduling, | 96 ::switches::kEnableBeginFrameScheduling, |
| 97 ::switches::kEnablePreferCompositingToLCDText, | 97 ::switches::kEnablePreferCompositingToLCDText, |
| 98 ::switches::kEnableDelegatedRenderer, | 98 ::switches::kEnableDelegatedRenderer, |
| 99 ::switches::kDisableDisplayList2dCanvas, | 99 ::switches::kDisableDisplayList2dCanvas, |
| 100 ::switches::kEnableDisplayList2dCanvas, | 100 ::switches::kEnableDisplayList2dCanvas, |
| 101 ::switches::kForceDisplayList2dCanvas, | 101 ::switches::kForceDisplayList2dCanvas, |
| 102 ::switches::kEnableEncryptedMedia, | 102 ::switches::kDisableEncryptedMedia, |
| 103 ::switches::kDisableGpuSandbox, | 103 ::switches::kDisableGpuSandbox, |
| 104 ::switches::kEnableDistanceFieldText, | 104 ::switches::kEnableDistanceFieldText, |
| 105 ::switches::kEnableGpuRasterization, | 105 ::switches::kEnableGpuRasterization, |
| 106 ::switches::kEnableImageColorProfiles, | 106 ::switches::kEnableImageColorProfiles, |
| 107 ::switches::kEnableLogging, | 107 ::switches::kEnableLogging, |
| 108 ::switches::kEnableLowResTiling, | 108 ::switches::kEnableLowResTiling, |
| 109 ::switches::kEnableOneCopy, | 109 ::switches::kEnableOneCopy, |
| 110 ::switches::kEnablePinch, | 110 ::switches::kEnablePinch, |
| 111 ::switches::kEnablePluginPlaceholderShadowDom, | 111 ::switches::kEnablePluginPlaceholderShadowDom, |
| 112 ::switches::kEnableSlimmingPaint, | 112 ::switches::kEnableSlimmingPaint, |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 // Relaunch chrome without session manager on dev box. | 374 // Relaunch chrome without session manager on dev box. |
| 375 ReLaunch(command_line); | 375 ReLaunch(command_line); |
| 376 return; | 376 return; |
| 377 } | 377 } |
| 378 | 378 |
| 379 // ChromeRestartRequest deletes itself after request sent to session manager. | 379 // ChromeRestartRequest deletes itself after request sent to session manager. |
| 380 (new ChromeRestartRequest(command_line))->Start(); | 380 (new ChromeRestartRequest(command_line))->Start(); |
| 381 } | 381 } |
| 382 | 382 |
| 383 } // namespace chromeos | 383 } // namespace chromeos |
| OLD | NEW |