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

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

Issue 15081003: Add flag to enable syncfs directory support to about:flags. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: comments Created 7 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | webkit/fileapi/syncable/syncable_file_system_util.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 (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 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
1358 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; 1358 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error";
1359 1359
1360 1360
1361 // Tries to connect to XMPP using SSLTCP first (for testing). 1361 // Tries to connect to XMPP using SSLTCP first (for testing).
1362 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; 1362 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp";
1363 1363
1364 // Enables deferring sync backend initialization until user initiated changes 1364 // Enables deferring sync backend initialization until user initiated changes
1365 // occur. 1365 // occur.
1366 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; 1366 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup";
1367 1367
1368 // Enables directory support for sync filesystem
1369 const char kSyncfsEnableDirectoryOperation[] =
1370 "enable-syncfs-directory-operation";
1371
1368 // Enables tab dragging to create a real browser. 1372 // Enables tab dragging to create a real browser.
1369 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; 1373 const char kTabBrowserDragging[] = "enable-tab-browser-dragging";
1370 1374
1371 // Enables tab capture. 1375 // Enables tab capture.
1372 const char kTabCapture[] = "enable-tab-capture"; 1376 const char kTabCapture[] = "enable-tab-capture";
1373 1377
1374 // Passes the name of the current running automated test to Chrome. 1378 // Passes the name of the current running automated test to Chrome.
1375 const char kTestName[] = "test-name"; 1379 const char kTestName[] = "test-name";
1376 1380
1377 // Runs the security test for the NaCl loader sandbox. 1381 // Runs the security test for the NaCl loader sandbox.
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1684 1688
1685 // ----------------------------------------------------------------------------- 1689 // -----------------------------------------------------------------------------
1686 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1690 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1687 // 1691 //
1688 // You were going to just dump your switches here, weren't you? Instead, please 1692 // You were going to just dump your switches here, weren't you? Instead, please
1689 // put them in alphabetical order above, or in order inside the appropriate 1693 // put them in alphabetical order above, or in order inside the appropriate
1690 // ifdef at the bottom. The order should match the header. 1694 // ifdef at the bottom. The order should match the header.
1691 // ----------------------------------------------------------------------------- 1695 // -----------------------------------------------------------------------------
1692 1696
1693 } // namespace switches 1697 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | webkit/fileapi/syncable/syncable_file_system_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698