Chromium Code Reviews| Index: Source/bindings/core/v8/SerializedScriptValue.cpp |
| diff --git a/Source/bindings/core/v8/SerializedScriptValue.cpp b/Source/bindings/core/v8/SerializedScriptValue.cpp |
| index 1f44ef32f58bed0d6f5e4336b2eaa40ef272b6ae..65b08e677b1d6ee153535c5a55b7d7ac2cdca684 100644 |
| --- a/Source/bindings/core/v8/SerializedScriptValue.cpp |
| +++ b/Source/bindings/core/v8/SerializedScriptValue.cpp |
| @@ -53,7 +53,6 @@ |
| #include "bindings/core/v8/custom/V8Uint8ClampedArrayCustom.h" |
| #include "bindings/modules/v8/V8CryptoKey.h" |
| #include "bindings/modules/v8/V8DOMFileSystem.h" |
| -#include "core/dom/ExceptionCode.h" |
|
shans
2014/08/25 11:53:58
Revert the changes in this file (git checkout mast
|
| #include "core/dom/MessagePort.h" |
| #include "core/fileapi/Blob.h" |
| #include "core/fileapi/File.h" |
| @@ -2977,6 +2976,7 @@ v8::Handle<v8::Value> SerializedScriptValue::deserialize(v8::Isolate* isolate, M |
| { |
| if (!m_data.impl()) |
| return v8::Null(isolate); |
| + |
| COMPILE_ASSERT(sizeof(BufferValueType) == 2, BufferValueTypeIsTwoBytes); |
| m_data.ensure16Bit(); |
| // FIXME: SerializedScriptValue shouldn't use String for its underlying |