| 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());
|
|
|