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

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

Issue 25385002: Remove the BufferedInputRouter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Space removal 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/renderer_host/input/browser_input_event.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/command_line.h" 10 #include "base/command_line.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ::switches::kDisableSeccompFilterSandbox, 87 ::switches::kDisableSeccompFilterSandbox,
88 ::switches::kDisableSetuidSandbox, 88 ::switches::kDisableSetuidSandbox,
89 ::switches::kDisableThreadedCompositing, 89 ::switches::kDisableThreadedCompositing,
90 ::switches::kDisableTouchDragDrop, 90 ::switches::kDisableTouchDragDrop,
91 ::switches::kDisableTouchEditing, 91 ::switches::kDisableTouchEditing,
92 ::switches::kDisableWebKitMediaSource, 92 ::switches::kDisableWebKitMediaSource,
93 ::switches::kDisableAcceleratedFixedRootBackground, 93 ::switches::kDisableAcceleratedFixedRootBackground,
94 ::switches::kEnableAcceleratedFixedRootBackground, 94 ::switches::kEnableAcceleratedFixedRootBackground,
95 ::switches::kEnableAcceleratedOverflowScroll, 95 ::switches::kEnableAcceleratedOverflowScroll,
96 ::switches::kEnableBeginFrameScheduling, 96 ::switches::kEnableBeginFrameScheduling,
97 ::switches::kEnableBufferedInputRouter,
98 ::switches::kEnableCompositingForFixedPosition, 97 ::switches::kEnableCompositingForFixedPosition,
99 ::switches::kEnableDeadlineScheduling, 98 ::switches::kEnableDeadlineScheduling,
100 ::switches::kEnableDelegatedRenderer, 99 ::switches::kEnableDelegatedRenderer,
101 ::switches::kEnableEncryptedMedia, 100 ::switches::kEnableEncryptedMedia,
102 ::switches::kEnableGestureTapHighlight, 101 ::switches::kEnableGestureTapHighlight,
103 ::switches::kDisableGestureTapHighlight, 102 ::switches::kDisableGestureTapHighlight,
104 ::switches::kDisableGpuSandbox, 103 ::switches::kDisableGpuSandbox,
105 ::switches::kEnableLogging, 104 ::switches::kEnableLogging,
106 ::switches::kEnablePinch, 105 ::switches::kEnablePinch,
107 ::switches::kEnableThreadedCompositing, 106 ::switches::kEnableThreadedCompositing,
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 // Relaunch chrome without session manager on dev box. 361 // Relaunch chrome without session manager on dev box.
363 ReLaunch(command_line); 362 ReLaunch(command_line);
364 return; 363 return;
365 } 364 }
366 365
367 // ChromeRestartRequest deletes itself after request sent to session manager. 366 // ChromeRestartRequest deletes itself after request sent to session manager.
368 (new ChromeRestartRequest(command_line))->Start(); 367 (new ChromeRestartRequest(command_line))->Start();
369 } 368 }
370 369
371 } // namespace chromeos 370 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/input/browser_input_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698