summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/active_install_data.cc
diff options
context:
space:
mode:
authorbenwells <benwells@chromium.org>2015-10-13 16:38:46 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-13 23:39:38 +0000
commitcb4422c1ee7c1909afed5edbce2cbc3dcaaea80a (patch)
tree51d55586cef6cb5b71a86ac17f6b5cb7734d4a5a /chrome/browser/extensions/active_install_data.cc
parent778ff470b7022b5e0244a471d5041586aaf2b5b6 (diff)
downloadchromium_src-cb4422c1ee7c1909afed5edbce2cbc3dcaaea80a.zip
chromium_src-cb4422c1ee7c1909afed5edbce2cbc3dcaaea80a.tar.gz
chromium_src-cb4422c1ee7c1909afed5edbce2cbc3dcaaea80a.tar.bz2
Remove ability for users to launch ephemeral apps.
Test code can still do this. BUG=517735 Review URL: https://codereview.chromium.org/1395043002 Cr-Commit-Position: refs/heads/master@{#353904}
Diffstat (limited to 'chrome/browser/extensions/active_install_data.cc')
-rw-r--r--chrome/browser/extensions/active_install_data.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/active_install_data.cc b/chrome/browser/extensions/active_install_data.cc
index f9c9a0c..ee6cdfe 100644
--- a/chrome/browser/extensions/active_install_data.cc
+++ b/chrome/browser/extensions/active_install_data.cc
@@ -11,11 +11,11 @@ namespace extensions {
// ActiveInstallData:
ActiveInstallData::ActiveInstallData()
- : percent_downloaded(0), is_ephemeral(false) {
+ : percent_downloaded(0) {
}
ActiveInstallData::ActiveInstallData(const std::string& extension_id)
- : extension_id(extension_id), percent_downloaded(0), is_ephemeral(false) {
+ : extension_id(extension_id), percent_downloaded(0) {
}
// ScopedActiveInstall: