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

Unified Diff: chrome/browser/component_updater/recovery_improved_component_installer.cc

Issue 2661113003: Skeleton mechanical impl. for the RecoveryImprovedComponent. (Closed)
Patch Set: . Created 3 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: chrome/browser/component_updater/recovery_improved_component_installer.cc
diff --git a/chrome/browser/component_updater/recovery_improved_component_installer.cc b/chrome/browser/component_updater/recovery_improved_component_installer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..de35306184600de7225614a9e71da01602c413c2
--- /dev/null
+++ b/chrome/browser/component_updater/recovery_improved_component_installer.cc
@@ -0,0 +1,91 @@
+// Copyright (c) 2017 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 "chrome/browser/component_updater/recovery_improved_component_installer.h"
+
+#include <iterator>
+#include <utility>
+
+#include "base/callback.h"
+
+namespace component_updater {
+
+// The SHA256 of the SubjectPublicKeyInfo used to sign the component CRX.
+// The extension id is:
+// TODO(sorin): needs a CRX id.
+const uint8_t kPublicKeySHA256[32] = {0};
+
+const char kRecoveryImprovedManifestName[] = "ChromeRecovery";
waffles 2017/01/31 21:34:40 A glance at chrome://components indicates most com
+
+RecoveryImprovedInstallerTraits::RecoveryImprovedInstallerTraits(
+ PrefService* prefs)
+ : prefs_(prefs) {}
+
+RecoveryImprovedInstallerTraits::~RecoveryImprovedInstallerTraits() {}
+
+bool RecoveryImprovedInstallerTraits::
+ SupportsGroupPolicyEnabledComponentUpdates() const {
+ return true;
+}
+
+bool RecoveryImprovedInstallerTraits::RequiresNetworkEncryption() const {
+ return false;
+}
+
+update_client::CrxInstaller::Result
+RecoveryImprovedInstallerTraits::OnCustomInstall(
+ const base::DictionaryValue& manifest,
+ const base::FilePath& install_dir) {
+ return update_client::CrxInstaller::Result(0);
+}
+
+void RecoveryImprovedInstallerTraits::ComponentReady(
+ const base::Version& version,
+ const base::FilePath& install_dir,
+ std::unique_ptr<base::DictionaryValue> manifest) {}
+
+// Called during startup and installation before ComponentReady().
+bool RecoveryImprovedInstallerTraits::VerifyInstallation(
+ const base::DictionaryValue& manifest,
+ const base::FilePath& install_dir) const {
+ return true;
+}
+
+base::FilePath RecoveryImprovedInstallerTraits::GetRelativeInstallDir() const {
+ return base::FilePath(FILE_PATH_LITERAL("RecoveryImproved"));
+}
+
+void RecoveryImprovedInstallerTraits::GetHash(
+ std::vector<uint8_t>* hash) const {
+ hash->assign(std::begin(kPublicKeySHA256), std::end(kPublicKeySHA256));
+}
+
+std::string RecoveryImprovedInstallerTraits::GetName() const {
+ return kRecoveryImprovedManifestName;
+}
+
+update_client::InstallerAttributes
+RecoveryImprovedInstallerTraits::GetInstallerAttributes() const {
+ return update_client::InstallerAttributes();
+}
+
+std::vector<std::string> RecoveryImprovedInstallerTraits::GetMimeTypes() const {
+ return std::vector<std::string>();
+}
+
+void RegisterRecoveryImprovedComponent(ComponentUpdateService* cus,
+ PrefService* prefs) {
+ DVLOG(1) << "Registering RecoveryImproved component.";
+
+ std::unique_ptr<ComponentInstallerTraits> traits(
+ new RecoveryImprovedInstallerTraits(prefs));
+ // |cus| will take ownership of |installer| during installer->Register(cus).
+ DefaultComponentInstaller* installer =
+ new DefaultComponentInstaller(std::move(traits));
+ installer->Register(cus, base::Closure());
+}
+
+void RegisterPrefsForRecoveryImprovedComponent(PrefRegistrySimple* registry) {}
+
+} // namespace component_updater

Powered by Google App Engine
This is Rietveld 408576698