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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.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/V8TestInterfaceGarbageCollected.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp
index e65b2d32793b708ef1ab3479341644239a23a7a3..23df60f535d18495925bbe4079cd3e2d00c9545c 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp
@@ -214,7 +214,7 @@ static void hasMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
V8StringResource<> value;
value = info[0];
if (!value.prepare())
- return;
+ return;
bool result = impl->hasForBinding(scriptState, value, exceptionState);
if (exceptionState.hadException()) {
@@ -242,7 +242,7 @@ static void addMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
V8StringResource<> value;
value = info[0];
if (!value.prepare())
- return;
+ return;
TestInterfaceGarbageCollected* result = impl->addForBinding(scriptState, value, exceptionState);
if (exceptionState.hadException()) {
@@ -287,7 +287,7 @@ static void deleteMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
V8StringResource<> value;
value = info[0];
if (!value.prepare())
- return;
+ return;
bool result = impl->deleteForBinding(scriptState, value, exceptionState);
if (exceptionState.hadException()) {
@@ -327,7 +327,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) {
V8StringResource<> str;
str = info[0];
if (!str.prepare())
- return;
+ return;
TestInterfaceGarbageCollected* impl = TestInterfaceGarbageCollected::create(str);
v8::Local<v8::Object> wrapper = info.Holder();

Powered by Google App Engine
This is Rietveld 408576698