| Index: chrome/browser/component_updater/swiftshader_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/swiftshader_component_installer.cc b/chrome/browser/component_updater/swiftshader_component_installer.cc
|
| index 16b83945970c969ebb731ba88ac3acb8436ed1e5..07f527d55b08ab53c1cecd287e425e866b80d408 100644
|
| --- a/chrome/browser/component_updater/swiftshader_component_installer.cc
|
| +++ b/chrome/browser/component_updater/swiftshader_component_installer.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/component_updater/swiftshader_component_installer.h"
|
|
|
| +#include <stdint.h>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -32,10 +33,10 @@ namespace component_updater {
|
| namespace {
|
|
|
| // CRX hash. The extension id is: nhfgdggnnopgbfdlpeoalgcjdgfafocg.
|
| -const uint8 kSha2Hash[] = {0xd7, 0x56, 0x36, 0x6d, 0xde, 0xf6, 0x15, 0x3b,
|
| - 0xf4, 0xe0, 0xb6, 0x29, 0x36, 0x50, 0x5e, 0x26,
|
| - 0xbd, 0x77, 0x8b, 0x8e, 0x35, 0xc2, 0x7e, 0x43,
|
| - 0x52, 0x47, 0x62, 0xed, 0x12, 0xca, 0xcc, 0x6a};
|
| +const uint8_t kSha2Hash[] = {0xd7, 0x56, 0x36, 0x6d, 0xde, 0xf6, 0x15, 0x3b,
|
| + 0xf4, 0xe0, 0xb6, 0x29, 0x36, 0x50, 0x5e, 0x26,
|
| + 0xbd, 0x77, 0x8b, 0x8e, 0x35, 0xc2, 0x7e, 0x43,
|
| + 0x52, 0x47, 0x62, 0xed, 0x12, 0xca, 0xcc, 0x6a};
|
|
|
| // File name of the internal SwiftShader plugin on different platforms.
|
| const base::FilePath::CharType kSwiftShaderEglName[] =
|
|
|