summaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
authorkinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-16 16:59:56 +0000
committerkinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-16 16:59:56 +0000
commit6279f29991c3aa4ece461b8f9c1635f9b0751b07 (patch)
treead4c16f2d08303299e40c1d7cbbda84fed4ecc23 /chromeos
parent9176dffbe65d0e9deb97d5be87d41f26f74c2a53 (diff)
downloadchromium_src-6279f29991c3aa4ece461b8f9c1635f9b0751b07.zip
chromium_src-6279f29991c3aa4ece461b8f9c1635f9b0751b07.tar.gz
chromium_src-6279f29991c3aa4ece461b8f9c1635f9b0751b07.tar.bz2
Add --enable-filemanager-mtp flag.
This is for hiding MTP support in Chrome OS file manager app for normal use until the feature becomes mature. Caution: At this moment, no code for MTP support is landed to Chromium. Flipping the flag has no effect yet. BUG=363899 Review URL: https://codereview.chromium.org/240083002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264221 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos')
-rw-r--r--chromeos/chromeos_switches.cc3
-rw-r--r--chromeos/chromeos_switches.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/chromeos/chromeos_switches.cc b/chromeos/chromeos_switches.cc
index 1c2a4e6..dca8f8a 100644
--- a/chromeos/chromeos_switches.cc
+++ b/chromeos/chromeos_switches.cc
@@ -65,6 +65,9 @@ const char kEchoExtensionPath[] = "echo-ext-path";
// Enables switching between different cellular carriers from the UI.
const char kEnableCarrierSwitching[] = "enable-carrier-switching";
+// Enables MTP support in Files.app.
+const char kEnableFileManagerMTP[] = "enable-filemanager-mtp";
+
// Enables notifications about captive portals in session.
const char kEnableNetworkPortalNotification[] =
"enable-network-portal-notification";
diff --git a/chromeos/chromeos_switches.h b/chromeos/chromeos_switches.h
index 9c8b2df..e56ce7a 100644
--- a/chromeos/chromeos_switches.h
+++ b/chromeos/chromeos_switches.h
@@ -37,6 +37,7 @@ CHROMEOS_EXPORT extern const char kDisableQuickofficeComponentApp[];
CHROMEOS_EXPORT extern const char kDisableVolumeAdjustSound[];
CHROMEOS_EXPORT extern const char kEchoExtensionPath[];
CHROMEOS_EXPORT extern const char kEnableCarrierSwitching[];
+CHROMEOS_EXPORT extern const char kEnableFileManagerMTP[];
CHROMEOS_EXPORT extern const char kEnableKioskMode[];
CHROMEOS_EXPORT extern const char kEnableNetworkPortalNotification[];
CHROMEOS_EXPORT extern const char kEnableRequestTabletSite[];