| Index: chrome/browser/component_updater/file_type_policies_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/file_type_policies_component_installer.cc b/chrome/browser/component_updater/file_type_policies_component_installer.cc
|
| index 2843be1074e83d148e2df368aa258f5e266e3b8c..4ca6ac60124acd1b61db0e2b53ed271494d37f2f 100644
|
| --- a/chrome/browser/component_updater/file_type_policies_component_installer.cc
|
| +++ b/chrome/browser/component_updater/file_type_policies_component_installer.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/component_updater/file_type_policies_component_installer.h"
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <utility>
|
| #include <vector>
|
| @@ -118,6 +119,11 @@ FileTypePoliciesComponentInstallerTraits::GetInstallerAttributes() const {
|
| return update_client::InstallerAttributes();
|
| }
|
|
|
| +std::vector<std::string>
|
| +FileTypePoliciesComponentInstallerTraits::GetMimeTypes() const {
|
| + return std::vector<std::string>();
|
| +}
|
| +
|
| void RegisterFileTypePoliciesComponent(ComponentUpdateService* cus,
|
| const base::FilePath& user_data_dir) {
|
| VLOG(1) << "Registering File Type Policies component.";
|
|
|