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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptState.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/ScriptState.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
index 2a36dfe25a55f673a21bf9a8991a78f8bef32e66..ad5ca71890b36167e71eb14e29d247bfaedb597c 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptState.cpp
@@ -15,8 +15,8 @@ PassRefPtr<ScriptState> ScriptState::create(v8::Local<v8::Context> context,
PassRefPtr<DOMWrapperWorld> world) {
RefPtr<ScriptState> scriptState =
adoptRef(new ScriptState(context, std::move(world)));
- // This ref() is for keeping this ScriptState alive as long as the v8::Context is alive.
- // This is deref()ed in the weak callback of the v8::Context.
+ // This ref() is for keeping this ScriptState alive as long as the v8::Context
+ // is alive. This is deref()ed in the weak callback of the v8::Context.
scriptState->ref();
return scriptState;
}

Powered by Google App Engine
This is Rietveld 408576698