summaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
authoryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-23 09:41:36 +0000
committeryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-23 09:41:36 +0000
commitf6ded87fe43d3fcfd873ce84cc898aa5ec5631df (patch)
tree51cb05cf486c0a7d915e630dcbf728b504751010 /chromeos
parent453c1b2a4f668714b427ebfec8694cde74c318f6 (diff)
downloadchromium_src-f6ded87fe43d3fcfd873ce84cc898aa5ec5631df.zip
chromium_src-f6ded87fe43d3fcfd873ce84cc898aa5ec5631df.tar.gz
chromium_src-f6ded87fe43d3fcfd873ce84cc898aa5ec5631df.tar.bz2
Files.app: Add a flag to hide the experimental webstore-integration feature.
The feature itself is not checked-in. This patch just adds the flag. BUG=263293 TEST=none R=mtomasz@chromium.org Review URL: https://codereview.chromium.org/20025002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213066 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos')
-rw-r--r--chromeos/chromeos_switches.cc4
-rw-r--r--chromeos/chromeos_switches.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/chromeos/chromeos_switches.cc b/chromeos/chromeos_switches.cc
index 9ef642b..a61b91b 100644
--- a/chromeos/chromeos_switches.cc
+++ b/chromeos/chromeos_switches.cc
@@ -127,6 +127,10 @@ const char kFileManagerEnableSharing[] = "file-manager-enable-sharing";
const char kFileManagerEnableFolderShortcuts[] =
"file-manager-enable-folder-shortcuts";
+// Enables the webstore integration feature in the Files.app.
+const char kFileManagerEnableWebstoreIntegration[] =
+ "file-manager-enable-webstore-integration";
+
// Passed to Chrome on first boot. Not passed on restart after sign out.
const char kFirstBoot[] = "first-boot";
diff --git a/chromeos/chromeos_switches.h b/chromeos/chromeos_switches.h
index 6c892a4..4d36520 100644
--- a/chromeos/chromeos_switches.h
+++ b/chromeos/chromeos_switches.h
@@ -53,6 +53,7 @@ CHROMEOS_EXPORT extern const char kEnterpriseEnrollmentModulusLimit[];
CHROMEOS_EXPORT extern const char kFileManagerShowCheckboxes[];
CHROMEOS_EXPORT extern const char kFileManagerEnableSharing[];
CHROMEOS_EXPORT extern const char kFileManagerEnableFolderShortcuts[];
+CHROMEOS_EXPORT extern const char kFileManagerEnableWebstoreIntegration[];
CHROMEOS_EXPORT extern const char kFirstBoot[];
CHROMEOS_EXPORT extern const char kForceLoginManagerInTests[];
CHROMEOS_EXPORT extern const char kGuestSession[];