Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp

Issue 2386173002: reflow comments in Source/bindings/core/v8 (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(

Powered by Google App Engine
This is Rietveld 408576698