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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.cpp

Issue 2387073002: reflow comments in Source/bindings/modules/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/modules/v8/SerializedScriptValueForModulesFactory.cpp
diff --git a/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.cpp b/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.cpp
index e7bbee812b46095beafab8d6dbb666e39e8975b6..4af9f4fd65d1c2b02edf427158e199e804dd1343 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.cpp
+++ b/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.cpp
@@ -42,8 +42,9 @@ v8::Local<v8::Value> SerializedScriptValueForModulesFactory::deserialize(
deserializer.setBlobInfoArray(blobInfo);
return deserializer.deserialize();
}
- // deserialize() can run arbitrary script (e.g., setters), which could result in |this| being destroyed.
- // Holding a RefPtr ensures we are alive (along with our internal data) throughout the operation.
+ // deserialize() can run arbitrary script (e.g., setters), which could result
+ // in |this| being destroyed. Holding a RefPtr ensures we are alive (along
+ // with our internal data) throughout the operation.
RefPtr<SerializedScriptValue> protect(value);
String& data = value->data();
if (!data.impl())

Powered by Google App Engine
This is Rietveld 408576698