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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 6913026: Compact Navigation prototype (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 // Enable click-to-play for blocked plug-ins. 379 // Enable click-to-play for blocked plug-ins.
380 const char kEnableClickToPlay[] = "enable-click-to-play"; 380 const char kEnableClickToPlay[] = "enable-click-to-play";
381 381
382 // This applies only when the process type is "service". Enables the 382 // This applies only when the process type is "service". Enables the
383 // Cloud Print Proxy component within the service process. 383 // Cloud Print Proxy component within the service process.
384 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 384 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
385 385
386 // Enables the Cloud Print dialog hosting code. 386 // Enables the Cloud Print dialog hosting code.
387 const char kEnableCloudPrint[] = "enable-cloud-print"; 387 const char kEnableCloudPrint[] = "enable-cloud-print";
388 388
389 // Enables compact navigation mode, which removes the toolbar and moves most of
390 // UI to the tab strip.
391 const char kEnableCompactNavigation[] = "enable-compact-navigation";
392
389 // Enables compositing to texture instead of display. 393 // Enables compositing to texture instead of display.
390 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; 394 const char kEnableCompositeToTexture[] = "enable-composite-to-texture";
391 395
392 // Enables establishing a backup TCP connection if a specified timeout is 396 // Enables establishing a backup TCP connection if a specified timeout is
393 // exceeded. 397 // exceeded.
394 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; 398 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs";
395 399
396 // Enables web developers to create apps for Chrome without using crx packages. 400 // Enables web developers to create apps for Chrome without using crx packages.
397 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 401 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
398 402
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 1138
1135 // ----------------------------------------------------------------------------- 1139 // -----------------------------------------------------------------------------
1136 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1140 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1137 // 1141 //
1138 // You were going to just dump your switches here, weren't you? Instead, 1142 // You were going to just dump your switches here, weren't you? Instead,
1139 // please put them in alphabetical order above, or in order inside the 1143 // please put them in alphabetical order above, or in order inside the
1140 // appropriate ifdef at the bottom. The order should match the header. 1144 // appropriate ifdef at the bottom. The order should match the header.
1141 // ----------------------------------------------------------------------------- 1145 // -----------------------------------------------------------------------------
1142 1146
1143 } // namespace switches 1147 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698