Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4857)

Unified Diff: chrome/browser/extensions/external_provider_impl.h

Issue 974713002: kiosk: Ensure launching latest version. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittest compile Created 5 years, 10 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/external_provider_impl.h
diff --git a/chrome/browser/extensions/external_provider_impl.h b/chrome/browser/extensions/external_provider_impl.h
index 0ba5e51647d8edc3892b11667d33562ea7a86dee..6217fb7af12727ddd42c02afcf6d462e6f345d7d 100644
--- a/chrome/browser/extensions/external_provider_impl.h
+++ b/chrome/browser/extensions/external_provider_impl.h
@@ -78,6 +78,10 @@ class ExternalProviderImpl : public ExternalProviderInterface {
auto_acknowledge_ = auto_acknowledge;
}
+ void set_install_immediately(bool install_immediately) {
+ install_immediately_ = install_immediately;
+ }
+
private:
// Location for external extensions that are provided by this provider from
// local crx files.
@@ -113,6 +117,9 @@ class ExternalProviderImpl : public ExternalProviderInterface {
// the user doesn't see an alert about them.
bool auto_acknowledge_;
+ // Whether the extensions from this provider should be installed immediately.
+ bool install_immediately_;
+
DISALLOW_COPY_AND_ASSIGN(ExternalProviderImpl);
};
« no previous file with comments | « chrome/browser/extensions/external_policy_loader_unittest.cc ('k') | chrome/browser/extensions/external_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698