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

Unified Diff: components/component_updater/default_component_installer_unittest.cc

Issue 2154773002: Implement Just-In-Time Flash updates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git pull && gclient sync Created 4 years, 5 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: components/component_updater/default_component_installer_unittest.cc
diff --git a/components/component_updater/default_component_installer_unittest.cc b/components/component_updater/default_component_installer_unittest.cc
index 184ef2b84455eba509590f225c87a849178a5096..badef77db23169c2041993c4bb45da30eb44c8c6 100644
--- a/components/component_updater/default_component_installer_unittest.cc
+++ b/components/component_updater/default_component_installer_unittest.cc
@@ -4,6 +4,7 @@
#include <iterator>
#include <string>
+#include <utility>
#include <vector>
#include "base/callback.h"
@@ -102,6 +103,10 @@ class FakeInstallerTraits : public ComponentInstallerTraits {
return installer_attributes;
}
+ std::vector<std::string> GetMimeTypes() const override {
+ return std::vector<std::string>();
+ }
+
private:
static void GetPkHash(std::vector<uint8_t>* hash) {
hash->assign(std::begin(kSha256Hash), std::end(kSha256Hash));

Powered by Google App Engine
This is Rietveld 408576698