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

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

Issue 2547373002: Rename TouchEventAPI to TouchEventFeatureDetection (Closed)
Patch Set: Added a todo Created 4 years 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::kTouchEventFeatureDetection,
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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 // Relaunch chrome without session manager on dev box. 389 // Relaunch chrome without session manager on dev box.
390 ReLaunch(command_line); 390 ReLaunch(command_line);
391 return; 391 return;
392 } 392 }
393 393
394 // ChromeRestartRequest deletes itself after request sent to session manager. 394 // ChromeRestartRequest deletes itself after request sent to session manager.
395 (new ChromeRestartRequest(command_line.argv()))->Start(); 395 (new ChromeRestartRequest(command_line.argv()))->Start();
396 } 396 }
397 397
398 } // namespace chromeos 398 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698