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

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: Collapse conditionals Created 7 years, 2 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
« no previous file with comments | « no previous file | content/browser/android/content_view_core_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 ::switches::kDisableSeccompFilterSandbox, 86 ::switches::kDisableSeccompFilterSandbox,
87 ::switches::kDisableSetuidSandbox, 87 ::switches::kDisableSetuidSandbox,
88 ::switches::kDisableThreadedCompositing, 88 ::switches::kDisableThreadedCompositing,
89 ::switches::kDisableTouchDragDrop, 89 ::switches::kDisableTouchDragDrop,
90 ::switches::kDisableTouchEditing, 90 ::switches::kDisableTouchEditing,
91 ::switches::kDisableWebKitMediaSource, 91 ::switches::kDisableWebKitMediaSource,
92 ::switches::kDisableAcceleratedFixedRootBackground, 92 ::switches::kDisableAcceleratedFixedRootBackground,
93 ::switches::kEnableAcceleratedFixedRootBackground, 93 ::switches::kEnableAcceleratedFixedRootBackground,
94 ::switches::kEnableAcceleratedOverflowScroll, 94 ::switches::kEnableAcceleratedOverflowScroll,
95 ::switches::kEnableBeginFrameScheduling, 95 ::switches::kEnableBeginFrameScheduling,
96 ::switches::kEnableBrowserInputController, 96 ::switches::kEnableBufferedInputRouter,
97 ::switches::kEnableCompositingForFixedPosition, 97 ::switches::kEnableCompositingForFixedPosition,
98 ::switches::kEnableDeadlineScheduling, 98 ::switches::kEnableDeadlineScheduling,
99 ::switches::kEnableDelegatedRenderer, 99 ::switches::kEnableDelegatedRenderer,
100 ::switches::kEnableEncryptedMedia, 100 ::switches::kEnableEncryptedMedia,
101 ::switches::kEnableGestureTapHighlight, 101 ::switches::kEnableGestureTapHighlight,
102 ::switches::kDisableGestureTapHighlight, 102 ::switches::kDisableGestureTapHighlight,
103 ::switches::kDisableGpuSandbox, 103 ::switches::kDisableGpuSandbox,
104 ::switches::kEnableLogging, 104 ::switches::kEnableLogging,
105 ::switches::kEnablePinch, 105 ::switches::kEnablePinch,
106 ::switches::kEnableThreadedCompositing, 106 ::switches::kEnableThreadedCompositing,
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 // Relaunch chrome without session manager on dev box. 361 // Relaunch chrome without session manager on dev box.
362 ReLaunch(command_line); 362 ReLaunch(command_line);
363 return; 363 return;
364 } 364 }
365 365
366 // ChromeRestartRequest deletes itself after request sent to session manager. 366 // ChromeRestartRequest deletes itself after request sent to session manager.
367 (new ChromeRestartRequest(command_line))->Start(); 367 (new ChromeRestartRequest(command_line))->Start();
368 } 368 }
369 369
370 } // namespace chromeos 370 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | content/browser/android/content_view_core_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698