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

Unified Diff: extensions/browser/external_extension_install_info.cc

Issue 1495403002: Observe adding external extensions via windows registry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing files Created 4 years, 11 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: extensions/browser/external_extension_install_info.cc
diff --git a/extensions/browser/external_extension_install_info.cc b/extensions/browser/external_extension_install_info.cc
new file mode 100644
index 0000000000000000000000000000000000000000..70dfa59899b8a257d3013af28c8eacd3597ab3d6
--- /dev/null
+++ b/extensions/browser/external_extension_install_info.cc
@@ -0,0 +1,53 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "extensions/browser/external_extension_install_info.h"
+
+#include "extensions/common/manifest.h"
+
+namespace extensions {
+
+ExternalExtensionInstallInfo::ExternalExtensionInstallInfo(
+ const std::string& extension_id,
+ int creation_flags,
+ bool mark_acknowledged)
+ : extension_id(extension_id),
+ creation_flags(creation_flags),
+ mark_acknowledged(mark_acknowledged) {}
+
+ExternalExtensionInstallInfoFile::ExternalExtensionInstallInfoFile(
+ const std::string& extension_id,
+ scoped_ptr<base::Version> version,
+ const base::FilePath& path,
+ Manifest::Location crx_location,
+ int creation_flags,
+ bool mark_acknowledged,
+ bool install_immediately)
+ : ExternalExtensionInstallInfo(extension_id,
+ creation_flags,
+ mark_acknowledged),
+ version(std::move(version)),
+ path(path),
+ crx_location(crx_location),
+ install_immediately(install_immediately) {}
+ExternalExtensionInstallInfoFile::~ExternalExtensionInstallInfoFile() {}
+
+ExternalExtensionInstallInfoUpdateUrl::ExternalExtensionInstallInfoUpdateUrl(
+ const std::string& extension_id,
+ const std::string& install_parameter,
+ scoped_ptr<GURL> update_url,
+ Manifest::Location download_location,
+ int creation_flags,
+ bool mark_acknowledged)
+ : ExternalExtensionInstallInfo(extension_id,
+ creation_flags,
+ mark_acknowledged),
+ install_parameter(install_parameter),
+ update_url(std::move(update_url)),
+ download_location(download_location) {}
+
+ExternalExtensionInstallInfoUpdateUrl::
+ ~ExternalExtensionInstallInfoUpdateUrl() {}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698