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

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

Issue 2467913002: Touch event flag should control only DOM event firing. (Closed)
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into patchtoflags Created 4 years, 1 month 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 <sys/socket.h> 7 #include <sys/socket.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/common/ash_switches.h" 10 #include "ash/common/ash_switches.h"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 ::switches::kPpapiFlashPath, 143 ::switches::kPpapiFlashPath,
144 ::switches::kPpapiFlashVersion, 144 ::switches::kPpapiFlashVersion,
145 ::switches::kPpapiInProcess, 145 ::switches::kPpapiInProcess,
146 ::switches::kRemoteDebuggingPort, 146 ::switches::kRemoteDebuggingPort,
147 ::switches::kRendererStartupDialog, 147 ::switches::kRendererStartupDialog,
148 ::switches::kRootLayerScrolls, 148 ::switches::kRootLayerScrolls,
149 #if defined(USE_X11) || defined(USE_OZONE) 149 #if defined(USE_X11) || defined(USE_OZONE)
150 ::switches::kTouchCalibration, 150 ::switches::kTouchCalibration,
151 #endif 151 #endif
152 ::switches::kTouchDevices, 152 ::switches::kTouchDevices,
153 ::switches::kTouchEvents, 153 ::switches::kDisableTouchEventAPI,
154 ::switches::kTopChromeMD, 154 ::switches::kTopChromeMD,
155 ::switches::kTraceToConsole, 155 ::switches::kTraceToConsole,
156 ::switches::kUIDisablePartialSwap, 156 ::switches::kUIDisablePartialSwap,
157 ::switches::kUIPrioritizeInGpuProcess, 157 ::switches::kUIPrioritizeInGpuProcess,
158 #if defined(USE_CRAS) 158 #if defined(USE_CRAS)
159 ::switches::kUseCras, 159 ::switches::kUseCras,
160 #endif 160 #endif
161 ::switches::kUseGL, 161 ::switches::kUseGL,
162 ::switches::kUserDataDir, 162 ::switches::kUserDataDir,
163 ::switches::kV, 163 ::switches::kV,
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 // Relaunch chrome without session manager on dev box. 387 // Relaunch chrome without session manager on dev box.
388 ReLaunch(command_line); 388 ReLaunch(command_line);
389 return; 389 return;
390 } 390 }
391 391
392 // ChromeRestartRequest deletes itself after request sent to session manager. 392 // ChromeRestartRequest deletes itself after request sent to session manager.
393 (new ChromeRestartRequest(command_line.argv()))->Start(); 393 (new ChromeRestartRequest(command_line.argv()))->Start();
394 } 394 }
395 395
396 } // namespace chromeos 396 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698