Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4015)

Unified Diff: chrome/browser/extensions/active_install_data.cc

Issue 1395043002: Remove ability for users to launch ephemeral apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/active_install_data.cc
diff --git a/chrome/browser/extensions/active_install_data.cc b/chrome/browser/extensions/active_install_data.cc
index f9c9a0c878149c56fac166a0962fcc808983d146..ee6cdfe2d418af870085c668ae1ac18f055cb70c 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:

Powered by Google App Engine
This is Rietveld 408576698