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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h

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/DOMDataStore.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h b/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h
index 5b7de3ab40cf022e811438ef5dd2fc771584db54..94fd9b76cc7f06a66ad3f082147fb9044d6a85c9 100644
--- a/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h
+++ b/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h
@@ -208,10 +208,11 @@ class DOMDataStore {
return m_wrapperMap->set(object, wrapperTypeInfo, wrapper);
}
- // We can use a wrapper stored in a ScriptWrappable when we're in the main world.
- // This method does the fast check if we're in the main world. If this method returns true,
- // it is guaranteed that we're in the main world. On the other hand, if this method returns
- // false, nothing is guaranteed (we might be in the main world).
+ // We can use a wrapper stored in a ScriptWrappable when we're in the main
+ // world. This method does the fast check if we're in the main world. If this
+ // method returns true, it is guaranteed that we're in the main world. On the
+ // other hand, if this method returns false, nothing is guaranteed (we might
+ // be in the main world).
static bool canUseScriptWrappable(Node*) {
// This helper function itself doesn't use the argument, but we have to
// make sure that the argument is type of Node* because Node and its

Powered by Google App Engine
This is Rietveld 408576698