| Index: chrome/browser/extensions/sandboxed_extension_unpacker.cc
|
| diff --git a/chrome/browser/extensions/sandboxed_extension_unpacker.cc b/chrome/browser/extensions/sandboxed_extension_unpacker.cc
|
| index 65ccded7b75df53c2e9c5b65af64b149b1de8da1..a32304e8f123f83040b9c27a7c06683cfdaf9650 100644
|
| --- a/chrome/browser/extensions/sandboxed_extension_unpacker.cc
|
| +++ b/chrome/browser/extensions/sandboxed_extension_unpacker.cc
|
| @@ -7,6 +7,7 @@
|
| #include <set>
|
|
|
| #include "app/gfx/codec/png_codec.h"
|
| +#include "base/base64.h"
|
| #include "base/crypto/signature_verifier.h"
|
| #include "base/file_util.h"
|
| #include "base/message_loop.h"
|
| @@ -20,7 +21,6 @@
|
| #include "chrome/common/extensions/extension_constants.h"
|
| #include "chrome/common/extensions/extension_unpacker.h"
|
| #include "chrome/common/json_value_serializer.h"
|
| -#include "net/base/base64.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
|
|
| const char SandboxedExtensionUnpacker::kExtensionHeaderMagic[] = "Cr24";
|
| @@ -230,7 +230,7 @@ bool SandboxedExtensionUnpacker::ValidateSignature() {
|
| return false;
|
| }
|
|
|
| - net::Base64Encode(std::string(reinterpret_cast<char*>(&key.front()),
|
| + base::Base64Encode(std::string(reinterpret_cast<char*>(&key.front()),
|
| key.size()), &public_key_);
|
| return true;
|
| }
|
|
|