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

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

Issue 203473003: [FastTextAutosizer] Enable FastTextAutosizer on tot/dev by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Indent Created 6 years, 9 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 | Annotate | Revision Log
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 const base::DictionaryValue& new_switches, 64 const base::DictionaryValue& new_switches,
65 CommandLine* command_line) { 65 CommandLine* command_line) {
66 DCHECK_NE(&base_command_line, command_line); 66 DCHECK_NE(&base_command_line, command_line);
67 67
68 static const char* kForwardSwitches[] = { 68 static const char* kForwardSwitches[] = {
69 ::switches::kDisableAccelerated2dCanvas, 69 ::switches::kDisableAccelerated2dCanvas,
70 ::switches::kDisableAcceleratedOverflowScroll, 70 ::switches::kDisableAcceleratedOverflowScroll,
71 ::switches::kDisableAcceleratedVideoDecode, 71 ::switches::kDisableAcceleratedVideoDecode,
72 ::switches::kDisableBrowserPluginCompositing, 72 ::switches::kDisableBrowserPluginCompositing,
73 ::switches::kDisableDelegatedRenderer, 73 ::switches::kDisableDelegatedRenderer,
74 ::switches::kDisableFastTextAutosizing,
74 ::switches::kDisableFiltersOverIPC, 75 ::switches::kDisableFiltersOverIPC,
75 ::switches::kDisableForceCompositingMode, 76 ::switches::kDisableForceCompositingMode,
76 ::switches::kDisableGpuShaderDiskCache, 77 ::switches::kDisableGpuShaderDiskCache,
77 ::switches::kDisableGpuWatchdog, 78 ::switches::kDisableGpuWatchdog,
78 ::switches::kDisableGpuCompositing, 79 ::switches::kDisableGpuCompositing,
79 ::switches::kDisableGpuRasterization, 80 ::switches::kDisableGpuRasterization,
80 ::switches::kDisableImplSidePainting, 81 ::switches::kDisableImplSidePainting,
81 ::switches::kDisableLowResTiling, 82 ::switches::kDisableLowResTiling,
82 ::switches::kDisableMapImage, 83 ::switches::kDisableMapImage,
83 ::switches::kDisablePrefixedEncryptedMedia, 84 ::switches::kDisablePrefixedEncryptedMedia,
84 ::switches::kDisablePanelFitting, 85 ::switches::kDisablePanelFitting,
85 ::switches::kDisableRepaintAfterLayout, 86 ::switches::kDisableRepaintAfterLayout,
86 ::switches::kDisableSeccompFilterSandbox, 87 ::switches::kDisableSeccompFilterSandbox,
87 ::switches::kDisableSetuidSandbox, 88 ::switches::kDisableSetuidSandbox,
88 ::switches::kDisableThreadedCompositing, 89 ::switches::kDisableThreadedCompositing,
89 ::switches::kDisableTouchDragDrop, 90 ::switches::kDisableTouchDragDrop,
90 ::switches::kDisableTouchEditing, 91 ::switches::kDisableTouchEditing,
91 ::switches::kDisableUniversalAcceleratedOverflowScroll, 92 ::switches::kDisableUniversalAcceleratedOverflowScroll,
92 ::switches::kDisableUnprefixedMediaSource, 93 ::switches::kDisableUnprefixedMediaSource,
93 ::switches::kDisableWebKitMediaSource, 94 ::switches::kDisableWebKitMediaSource,
94 ::switches::kDisableAcceleratedFixedRootBackground, 95 ::switches::kDisableAcceleratedFixedRootBackground,
95 ::switches::kEnableAcceleratedFixedRootBackground, 96 ::switches::kEnableAcceleratedFixedRootBackground,
96 ::switches::kEnableAcceleratedOverflowScroll, 97 ::switches::kEnableAcceleratedOverflowScroll,
97 ::switches::kEnableBeginFrameScheduling, 98 ::switches::kEnableBeginFrameScheduling,
98 ::switches::kEnableCompositingForFixedPosition, 99 ::switches::kEnableCompositingForFixedPosition,
99 ::switches::kEnableDelegatedRenderer, 100 ::switches::kEnableDelegatedRenderer,
100 ::switches::kEnableEncryptedMedia, 101 ::switches::kEnableEncryptedMedia,
102 ::switches::kEnableFastTextAutosizing,
101 ::switches::kEnableGestureTapHighlight, 103 ::switches::kEnableGestureTapHighlight,
102 ::switches::kDisableGestureTapHighlight, 104 ::switches::kDisableGestureTapHighlight,
103 ::switches::kDisableGpuSandbox, 105 ::switches::kDisableGpuSandbox,
104 ::switches::kEnableDeferredFilters, 106 ::switches::kEnableDeferredFilters,
105 ::switches::kEnableGpuRasterization, 107 ::switches::kEnableGpuRasterization,
106 ::switches::kEnableImplSidePainting, 108 ::switches::kEnableImplSidePainting,
107 ::switches::kEnableLogging, 109 ::switches::kEnableLogging,
108 ::switches::kEnableLowResTiling, 110 ::switches::kEnableLowResTiling,
109 ::switches::kEnableMapImage, 111 ::switches::kEnableMapImage,
110 ::switches::kEnablePinch, 112 ::switches::kEnablePinch,
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 // Relaunch chrome without session manager on dev box. 355 // Relaunch chrome without session manager on dev box.
354 ReLaunch(command_line); 356 ReLaunch(command_line);
355 return; 357 return;
356 } 358 }
357 359
358 // ChromeRestartRequest deletes itself after request sent to session manager. 360 // ChromeRestartRequest deletes itself after request sent to session manager.
359 (new ChromeRestartRequest(command_line))->Start(); 361 (new ChromeRestartRequest(command_line))->Start();
360 } 362 }
361 363
362 } // namespace chromeos 364 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_startup_flags.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698