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

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

Issue 38793007: Experimental viewport meta tag support for desktop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/android/content_startup_flags.cc » ('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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 ::switches::kDisableGestureTapHighlight, 101 ::switches::kDisableGestureTapHighlight,
102 ::switches::kDisableGpuSandbox, 102 ::switches::kDisableGpuSandbox,
103 ::switches::kEnableLogging, 103 ::switches::kEnableLogging,
104 ::switches::kEnablePinch, 104 ::switches::kEnablePinch,
105 ::switches::kEnableRepaintAfterLayout, 105 ::switches::kEnableRepaintAfterLayout,
106 ::switches::kEnableThreadedCompositing, 106 ::switches::kEnableThreadedCompositing,
107 ::switches::kEnableTouchDragDrop, 107 ::switches::kEnableTouchDragDrop,
108 ::switches::kEnableTouchEditing, 108 ::switches::kEnableTouchEditing,
109 ::switches::kEnableUniversalAcceleratedOverflowScroll, 109 ::switches::kEnableUniversalAcceleratedOverflowScroll,
110 ::switches::kEnableViewport, 110 ::switches::kEnableViewport,
111 ::switches::kEnableViewportMeta,
112 ::switches::kMainFrameResizesAreOrientationChanges,
111 ::switches::kForceDeviceScaleFactor, 113 ::switches::kForceDeviceScaleFactor,
112 ::switches::kGpuStartupDialog, 114 ::switches::kGpuStartupDialog,
113 ::switches::kGpuSandboxAllowSysVShm, 115 ::switches::kGpuSandboxAllowSysVShm,
114 ::switches::kMultiProfiles, 116 ::switches::kMultiProfiles,
115 ::switches::kNoSandbox, 117 ::switches::kNoSandbox,
116 ::switches::kPpapiFlashArgs, 118 ::switches::kPpapiFlashArgs,
117 ::switches::kPpapiFlashInProcess, 119 ::switches::kPpapiFlashInProcess,
118 ::switches::kPpapiFlashPath, 120 ::switches::kPpapiFlashPath,
119 ::switches::kPpapiFlashVersion, 121 ::switches::kPpapiFlashVersion,
120 ::switches::kPpapiInProcess, 122 ::switches::kPpapiInProcess,
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 // Relaunch chrome without session manager on dev box. 366 // Relaunch chrome without session manager on dev box.
365 ReLaunch(command_line); 367 ReLaunch(command_line);
366 return; 368 return;
367 } 369 }
368 370
369 // ChromeRestartRequest deletes itself after request sent to session manager. 371 // ChromeRestartRequest deletes itself after request sent to session manager.
370 (new ChromeRestartRequest(command_line))->Start(); 372 (new ChromeRestartRequest(command_line))->Start();
371 } 373 }
372 374
373 } // namespace chromeos 375 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | content/browser/android/content_startup_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698