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

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

Issue 23983036: [Android] Provide synchronized input flush with BeginFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fix Created 7 years, 3 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
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ::switches::kDisableSeccompFilterSandbox, 85 ::switches::kDisableSeccompFilterSandbox,
86 ::switches::kDisableSetuidSandbox, 86 ::switches::kDisableSetuidSandbox,
87 ::switches::kDisableThreadedCompositing, 87 ::switches::kDisableThreadedCompositing,
88 ::switches::kDisableTouchDragDrop, 88 ::switches::kDisableTouchDragDrop,
89 ::switches::kDisableTouchEditing, 89 ::switches::kDisableTouchEditing,
90 ::switches::kDisableWebKitMediaSource, 90 ::switches::kDisableWebKitMediaSource,
91 ::switches::kDisableAcceleratedFixedRootBackground, 91 ::switches::kDisableAcceleratedFixedRootBackground,
92 ::switches::kEnableAcceleratedFixedRootBackground, 92 ::switches::kEnableAcceleratedFixedRootBackground,
93 ::switches::kEnableAcceleratedOverflowScroll, 93 ::switches::kEnableAcceleratedOverflowScroll,
94 ::switches::kEnableBeginFrameScheduling, 94 ::switches::kEnableBeginFrameScheduling,
95 ::switches::kEnableBrowserInputController, 95 ::switches::kEnableBufferedInputRouter,
96 ::switches::kEnableCompositingForFixedPosition, 96 ::switches::kEnableCompositingForFixedPosition,
97 ::switches::kEnableDelegatedRenderer, 97 ::switches::kEnableDelegatedRenderer,
98 ::switches::kEnableEncryptedMedia, 98 ::switches::kEnableEncryptedMedia,
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,
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 // Relaunch chrome without session manager on dev box. 356 // Relaunch chrome without session manager on dev box.
357 ReLaunch(command_line); 357 ReLaunch(command_line);
358 return; 358 return;
359 } 359 }
360 360
361 // ChromeRestartRequest deletes itself after request sent to session manager. 361 // ChromeRestartRequest deletes itself after request sent to session manager.
362 (new ChromeRestartRequest(command_line))->Start(); 362 (new ChromeRestartRequest(command_line))->Start();
363 } 363 }
364 364
365 } // namespace chromeos 365 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698