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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8StringResource.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/V8StringResource.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8StringResource.h b/third_party/WebKit/Source/bindings/core/v8/V8StringResource.h
index 617116d949451c4113e11edc440883ca4474fc67..9661f9c34ec7729322121ff589f585dd1fd49623 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8StringResource.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8StringResource.h
@@ -91,7 +91,8 @@ class WebCoreStringResourceBase {
}
protected:
- // A shallow copy of the string. Keeps the string buffer alive until the V8 engine garbage collects it.
+ // A shallow copy of the string. Keeps the string buffer alive until the V8
+ // engine garbage collects it.
String m_plainString;
// If this string is atomic or has been made atomic earlier the
// atomic string is held here. In the case where the string starts
@@ -204,7 +205,8 @@ class V8StringResource {
// v8::Isolate::GetCurrent().
v8::Isolate* isolate = v8::Isolate::GetCurrent();
v8::TryCatch block(isolate);
- // Handle the case where an exception is thrown as part of invoking toString on the object.
+ // Handle the case where an exception is thrown as part of invoking toString
+ // on the object.
if (!m_v8Object->ToString(isolate->GetCurrentContext())
.ToLocal(&m_v8Object)) {
exceptionState.rethrowV8Exception(block.Exception());

Powered by Google App Engine
This is Rietveld 408576698