| Index: components/component_updater/default_component_installer.h
|
| diff --git a/components/component_updater/default_component_installer.h b/components/component_updater/default_component_installer.h
|
| index 6e1a734bc6e314becb0a8aa21ce5722eb7a145b9..83c2a5f08e4980f39012389d6fd5ad13f9b501e4 100644
|
| --- a/components/component_updater/default_component_installer.h
|
| +++ b/components/component_updater/default_component_installer.h
|
| @@ -5,10 +5,12 @@
|
| #ifndef COMPONENTS_COMPONENT_UPDATER_DEFAULT_COMPONENT_INSTALLER_H_
|
| #define COMPONENTS_COMPONENT_UPDATER_DEFAULT_COMPONENT_INSTALLER_H_
|
|
|
| +#include <stdint.h>
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/threading/thread_checker.h"
|
| @@ -69,7 +71,7 @@ class ComponentInstallerTraits {
|
| virtual base::FilePath GetBaseDirectory() const = 0;
|
|
|
| // Returns the component's SHA2 hash as raw bytes.
|
| - virtual void GetHash(std::vector<uint8>* hash) const = 0;
|
| + virtual void GetHash(std::vector<uint8_t>* hash) const = 0;
|
|
|
| // Returns the human-readable name of the component.
|
| virtual std::string GetName() const = 0;
|
|
|