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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.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/V8TestInterface2.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
index d49d3acce3eff78c6deb4367ec4377dff827ad4f..9639cfc1b210b33b44ea7c629c6b3fafc0e1ab72 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
@@ -69,7 +69,7 @@ static void itemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
unsigned index;
index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
if (exceptionState.hadException())
- return;
+ return;
TestInterfaceEmpty* result = impl->item(index, exceptionState);
if (exceptionState.hadException()) {
@@ -96,7 +96,7 @@ static void setItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
TestInterfaceEmpty* value;
index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
if (exceptionState.hadException())
- return;
+ return;
value = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[1]);
if (!value) {
@@ -129,7 +129,7 @@ static void deleteItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
unsigned index;
index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
if (exceptionState.hadException())
- return;
+ return;
bool result = impl->deleteItem(index, exceptionState);
if (exceptionState.hadException()) {
@@ -155,7 +155,7 @@ static void namedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
V8StringResource<> name;
name = info[0];
if (!name.prepare())
- return;
+ return;
TestInterfaceEmpty* result = impl->namedItem(name, exceptionState);
if (exceptionState.hadException()) {
@@ -182,7 +182,7 @@ static void setNamedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
TestInterfaceEmpty* value;
name = info[0];
if (!name.prepare())
- return;
+ return;
value = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[1]);
if (!value && !isUndefinedOrNull(info[1])) {
@@ -215,7 +215,7 @@ static void deleteNamedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& inf
V8StringResource<> name;
name = info[0];
if (!name.prepare())
- return;
+ return;
bool result = impl->deleteNamedItem(name, exceptionState);
if (exceptionState.hadException()) {

Powered by Google App Engine
This is Rietveld 408576698