| Index: third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp b/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp
|
| index 9b78fca24010b446cf0336950259cda75d02e881..55c8776877b810a98581050cde04171b953437c2 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp
|
| @@ -117,9 +117,9 @@ SerializedScriptValue::SerializedScriptValue(const String& wireData)
|
| : m_data(wireData.isolatedCopy()), m_externallyAllocatedMemory(0) {}
|
|
|
| SerializedScriptValue::~SerializedScriptValue() {
|
| - // If the allocated memory was not registered before, then this class is likely
|
| - // used in a context other than Worker's onmessage environment and the presence of
|
| - // current v8 context is not guaranteed. Avoid calling v8 then.
|
| + // If the allocated memory was not registered before, then this class is
|
| + // likely used in a context other than Worker's onmessage environment and the
|
| + // presence of current v8 context is not guaranteed. Avoid calling v8 then.
|
| if (m_externallyAllocatedMemory) {
|
| ASSERT(v8::Isolate::GetCurrent());
|
| v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(
|
|
|