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

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

Issue 10920091: Move Drive API files to google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename google_api directory to google_apis Created 8 years, 3 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 489
490 // Enables web developers to create apps for Chrome without using crx packages. 490 // Enables web developers to create apps for Chrome without using crx packages.
491 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 491 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
492 492
493 // If true devtools experimental settings are enabled. 493 // If true devtools experimental settings are enabled.
494 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 494 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
495 495
496 // Enables experimental discovery slots in New Tab page. 496 // Enables experimental discovery slots in New Tab page.
497 const char kEnableDiscoveryInNewTabPage[] = "enable-discovery-ntp"; 497 const char kEnableDiscoveryInNewTabPage[] = "enable-discovery-ntp";
498 498
499 // Enables Drive v2 API instead of Google Documents List API.
500 const char kEnableDriveV2Api[] = "enable-drive-v2-api";
501
499 // Enables extensions to be easily installed from sites other than the web 502 // Enables extensions to be easily installed from sites other than the web
500 // store. Without this flag, they can still be installed, but must be manually 503 // store. Without this flag, they can still be installed, but must be manually
501 // dragged onto chrome://extensions/. 504 // dragged onto chrome://extensions/.
502 const char kEnableEasyOffStoreExtensionInstall[] = 505 const char kEnableEasyOffStoreExtensionInstall[] =
503 "enable-easy-off-store-extension-install"; 506 "enable-easy-off-store-extension-install";
504 507
505 // Enables extension APIs that are in development. 508 // Enables extension APIs that are in development.
506 const char kEnableExperimentalExtensionApis[] = 509 const char kEnableExperimentalExtensionApis[] =
507 "enable-experimental-extension-apis"; 510 "enable-experimental-extension-apis";
508 511
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 // Avoid doing animations upon oobe. 1387 // Avoid doing animations upon oobe.
1385 const char kDisableOobeAnimation[] = "disable-oobe-animation"; 1388 const char kDisableOobeAnimation[] = "disable-oobe-animation";
1386 1389
1387 // Enables touchpad three-finger-click as middle button. 1390 // Enables touchpad three-finger-click as middle button.
1388 const char kEnableTouchpadThreeFingerClick[] 1391 const char kEnableTouchpadThreeFingerClick[]
1389 = "touchpad-enable-three-finger-click"; 1392 = "touchpad-enable-three-finger-click";
1390 1393
1391 // Skips OAuth part of ChromeOS login process. 1394 // Skips OAuth part of ChromeOS login process.
1392 const char kSkipOAuthLogin[] = "skip-oauth-login"; 1395 const char kSkipOAuthLogin[] = "skip-oauth-login";
1393 1396
1394 // Enables Drive v2 API instead of Google Documents List API.
1395 const char kEnableDriveV2Api[] = "enable-drive-v2-api";
1396
1397 // Use level db for drive metadata storage. 1397 // Use level db for drive metadata storage.
1398 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; 1398 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata";
1399 1399
1400 // Enables the redirection of viewable document requests to the Google Document 1400 // Enables the redirection of viewable document requests to the Google Document
1401 // Viewer. 1401 // Viewer.
1402 const char kEnableGView[] = "enable-gview"; 1402 const char kEnableGView[] = "enable-gview";
1403 1403
1404 // Enable Kiosk mode for ChromeOS 1404 // Enable Kiosk mode for ChromeOS
1405 const char kEnableKioskMode[] = "enable-kiosk-mode"; 1405 const char kEnableKioskMode[] = "enable-kiosk-mode";
1406 1406
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 1567
1568 // ----------------------------------------------------------------------------- 1568 // -----------------------------------------------------------------------------
1569 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1569 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1570 // 1570 //
1571 // You were going to just dump your switches here, weren't you? Instead, please 1571 // You were going to just dump your switches here, weren't you? Instead, please
1572 // put them in alphabetical order above, or in order inside the appropriate 1572 // put them in alphabetical order above, or in order inside the appropriate
1573 // ifdef at the bottom. The order should match the header. 1573 // ifdef at the bottom. The order should match the header.
1574 // ----------------------------------------------------------------------------- 1574 // -----------------------------------------------------------------------------
1575 1575
1576 } // namespace switches 1576 } // namespace switches
OLDNEW
« chrome/browser/google_apis/gdata_util_unittest.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698