summaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
authorhirono@chromium.org <hirono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 09:28:49 +0000
committerhirono@chromium.org <hirono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 09:28:49 +0000
commit465fc2d426ca62a6fc6f080a28f9d43a9ca8ba5a (patch)
tree74115e52c1aee03625e2717ec4d829feed846612 /chromeos
parent40520120994ca0c15f925c90e45df894f3414841 (diff)
downloadchromium_src-465fc2d426ca62a6fc6f080a28f9d43a9ca8ba5a.zip
chromium_src-465fc2d426ca62a6fc6f080a28f9d43a9ca8ba5a.tar.gz
chromium_src-465fc2d426ca62a6fc6f080a28f9d43a9ca8ba5a.tar.bz2
Files.app: Added an entry to about:flags to hide the selecting checkbox in the file manager.
This CL added an entry to about:flags to hide the selecting checkbox in the file manager. The state of the flag is passed to JavaScript side as preferences, and FileTable class handles it. BUG=249242 TEST=manually R=satorux@chromium.org, yoshiki@chromium.org Review URL: https://codereview.chromium.org/16924004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206377 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 058e7a8..c33ad5c 100644
--- a/chromeos/chromeos_switches.cc
+++ b/chromeos/chromeos_switches.cc
@@ -124,6 +124,9 @@ const char kEnterpriseEnrollmentModulusLimit[] =
// Loads the File Manager with the legacy UI.
const char kFileManagerLegacyUI[] = "file-manager-legacy-ui";
+// Hides the selecting checkboxes in the Files.app.
+const char kFileManagerNoCheckboxes[] = "file-manager-no-checkboxes";
+
// 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 8be1f45..84ff3c5 100644
--- a/chromeos/chromeos_switches.h
+++ b/chromeos/chromeos_switches.h
@@ -52,6 +52,7 @@ CHROMEOS_EXPORT extern const char kEnableTouchpadThreeFingerSwipe[];
CHROMEOS_EXPORT extern const char kEnterpriseEnrollmentInitialModulus[];
CHROMEOS_EXPORT extern const char kEnterpriseEnrollmentModulusLimit[];
CHROMEOS_EXPORT extern const char kFileManagerLegacyUI[];
+CHROMEOS_EXPORT extern const char kFileManagerNoCheckboxes[];
CHROMEOS_EXPORT extern const char kFirstBoot[];
CHROMEOS_EXPORT extern const char kForceLoginManagerInTests[];
CHROMEOS_EXPORT extern const char kGuestSession[];