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

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: Added missing DropdownBarHostDelegate header file. 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 // Enable click-to-play for blocked plug-ins. 376 // Enable click-to-play for blocked plug-ins.
377 const char kEnableClickToPlay[] = "enable-click-to-play"; 377 const char kEnableClickToPlay[] = "enable-click-to-play";
378 378
379 // This applies only when the process type is "service". Enables the 379 // This applies only when the process type is "service". Enables the
380 // Cloud Print Proxy component within the service process. 380 // Cloud Print Proxy component within the service process.
381 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 381 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
382 382
383 // Enables the Cloud Print dialog hosting code. 383 // Enables the Cloud Print dialog hosting code.
384 const char kEnableCloudPrint[] = "enable-cloud-print"; 384 const char kEnableCloudPrint[] = "enable-cloud-print";
385 385
386 // Enables compact navigation mode, which removes the toolbar and moves most of
387 // UI to the tab strip.
388 const char kEnableCompactNavigation[] = "enable-compact-navigation";
389
386 // Enables compositing to texture instead of display. 390 // Enables compositing to texture instead of display.
387 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; 391 const char kEnableCompositeToTexture[] = "enable-composite-to-texture";
388 392
389 // Enables establishing a backup TCP connection if a specified timeout is 393 // Enables establishing a backup TCP connection if a specified timeout is
390 // exceeded. 394 // exceeded.
391 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; 395 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs";
392 396
393 // Enables web developers to create apps for Chrome without using crx packages. 397 // Enables web developers to create apps for Chrome without using crx packages.
394 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 398 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
395 399
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1156 1160
1157 // ----------------------------------------------------------------------------- 1161 // -----------------------------------------------------------------------------
1158 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1162 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1159 // 1163 //
1160 // You were going to just dump your switches here, weren't you? Instead, 1164 // You were going to just dump your switches here, weren't you? Instead,
1161 // please put them in alphabetical order above, or in order inside the 1165 // please put them in alphabetical order above, or in order inside the
1162 // appropriate ifdef at the bottom. The order should match the header. 1166 // appropriate ifdef at the bottom. The order should match the header.
1163 // ----------------------------------------------------------------------------- 1167 // -----------------------------------------------------------------------------
1164 1168
1165 } // namespace switches 1169 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698