| Index: chrome/browser/extensions/chrome_content_verifier_delegate.cc
|
| diff --git a/chrome/browser/extensions/chrome_content_verifier_delegate.cc b/chrome/browser/extensions/chrome_content_verifier_delegate.cc
|
| index 1f41b0695ed1a11420061c20d404e28218433a96..5f5b3a6a1d9981911d1fa1c79fb40a33d45b8989 100644
|
| --- a/chrome/browser/extensions/chrome_content_verifier_delegate.cc
|
| +++ b/chrome/browser/extensions/chrome_content_verifier_delegate.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/extensions/chrome_content_verifier_delegate.h"
|
|
|
| #include <algorithm>
|
| +#include <memory>
|
| #include <set>
|
| #include <vector>
|
|
|
| @@ -22,6 +23,7 @@
|
| #include "extensions/browser/extension_registry.h"
|
| #include "extensions/browser/extension_system.h"
|
| #include "extensions/browser/management_policy.h"
|
| +#include "extensions/common/constants.h"
|
| #include "extensions/common/extension.h"
|
| #include "extensions/common/extension_urls.h"
|
| #include "extensions/common/extensions_client.h"
|
| @@ -131,8 +133,8 @@ ContentVerifierDelegate::Mode ChromeContentVerifierDelegate::ShouldBeVerified(
|
| }
|
|
|
| ContentVerifierKey ChromeContentVerifierDelegate::GetPublicKey() {
|
| - return ContentVerifierKey(extension_misc::kWebstoreSignaturesPublicKey,
|
| - extension_misc::kWebstoreSignaturesPublicKeySize);
|
| + return ContentVerifierKey(kWebstoreSignaturesPublicKey,
|
| + kWebstoreSignaturesPublicKeySize);
|
| }
|
|
|
| GURL ChromeContentVerifierDelegate::GetSignatureFetchUrl(
|
|
|