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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp

Issue 2452403002: [Bindings] Reformat template files (4/4) (Closed)
Patch Set: Rebase 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/tests/results/core/V8TestNode.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp
index 84ba788f80de4d4a2ddd7f10254f9d0e69663ae3..b26c7cb5a84da394fbbae04059e0844c5d10941d 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp
@@ -68,7 +68,7 @@ static void hrefAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Function
// Prepare the value to be set.
V8StringResource<> cppValue = v8Value;
if (!cppValue.prepare())
- return;
+ return;
impl->setHref(cppValue);
}
@@ -100,7 +100,7 @@ static void hrefThrowsAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Fu
// Prepare the value to be set.
V8StringResource<> cppValue = v8Value;
if (!cppValue.prepare())
- return;
+ return;
impl->setHrefThrows(cppValue, exceptionState);
}
@@ -130,7 +130,7 @@ static void hrefCallWithAttributeSetter(v8::Local<v8::Value> v8Value, const v8::
// Prepare the value to be set.
V8StringResource<> cppValue = v8Value;
if (!cppValue.prepare())
- return;
+ return;
ExecutionContext* executionContext = currentExecutionContext(info.GetIsolate());
@@ -164,7 +164,7 @@ static void hrefByteStringAttributeSetter(v8::Local<v8::Value> v8Value, const v8
// Prepare the value to be set.
V8StringResource<> cppValue = toByteString(info.GetIsolate(), v8Value, exceptionState);
if (exceptionState.hadException())
- return;
+ return;
impl->setHrefByteString(cppValue);
}

Powered by Google App Engine
This is Rietveld 408576698