summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-06 22:00:46 +0000
committeryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-06 22:00:46 +0000
commit718e747be0d648a29403f478d7b32a5fe261eec3 (patch)
tree9b73aa99395d23bfe6f4675fada436e203cc7f7a
parentbb918e490573549c2576b55a7715b33a71f77287 (diff)
downloadchromium_src-718e747be0d648a29403f478d7b32a5fe261eec3.zip
chromium_src-718e747be0d648a29403f478d7b32a5fe261eec3.tar.gz
chromium_src-718e747be0d648a29403f478d7b32a5fe261eec3.tar.bz2
[Files.app] Enable the suggest an app dialog by default.
The M32 has branched. This patch enables suggest-an-apps dialog by reverting r232715. BUG=313877 TEST=none TBR=mtomasz@chromium.org Review URL: https://codereview.chromium.org/59223004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233389 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/resources/file_manager/foreground/js/file_manager.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/chrome/browser/resources/file_manager/foreground/js/file_manager.js b/chrome/browser/resources/file_manager/foreground/js/file_manager.js
index 8048a7f..a3bba82 100644
--- a/chrome/browser/resources/file_manager/foreground/js/file_manager.js
+++ b/chrome/browser/resources/file_manager/foreground/js/file_manager.js
@@ -209,14 +209,7 @@ var BOTTOM_MARGIN_FOR_PREVIEW_PANEL_PX = 52;
}.bind(this));
// TODO(yoshiki): Remove the flag when the feature is launched.
- this.enableExperimentalWebstoreIntegration_ = false;
- group.add(function(done) {
- chrome.commandLinePrivate.hasSwitch(
- 'file-manager-enable-webstore-integration', function(flag) {
- this.enableExperimentalWebstoreIntegration_ = flag;
- done();
- }.bind(this));
- }.bind(this));
+ this.enableExperimentalWebstoreIntegration_ = true;
group.run(callback);
};