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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/AnyCallbackFunctionOptionalAnyArg.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/AnyCallbackFunctionOptionalAnyArg.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/AnyCallbackFunctionOptionalAnyArg.cpp b/third_party/WebKit/Source/bindings/tests/results/core/AnyCallbackFunctionOptionalAnyArg.cpp
index 15fd9270f363ae9f1420b1a072a7de238766dd13..c98b31ed6c8db8b3c3e482b7b02cf33cb17148e9 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/AnyCallbackFunctionOptionalAnyArg.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/AnyCallbackFunctionOptionalAnyArg.cpp
@@ -20,56 +20,50 @@ namespace blink {
AnyCallbackFunctionOptionalAnyArg::AnyCallbackFunctionOptionalAnyArg(ScriptState* scriptState, v8::Local<v8::Function> callback)
: m_scriptState(scriptState),
- m_callback(scriptState->isolate(), callback)
-{
- DCHECK(!m_callback.isEmpty());
- m_callback.setPhantom();
+ m_callback(scriptState->isolate(), callback) {
+ DCHECK(!m_callback.isEmpty());
+ m_callback.setPhantom();
}
-DEFINE_TRACE(AnyCallbackFunctionOptionalAnyArg)
-{
-}
+DEFINE_TRACE(AnyCallbackFunctionOptionalAnyArg) {}
-DEFINE_TRACE_WRAPPERS(AnyCallbackFunctionOptionalAnyArg)
-{
- visitor->traceWrappers(&m_callback.cast<v8::Object>());
+DEFINE_TRACE_WRAPPERS(AnyCallbackFunctionOptionalAnyArg) {
+ visitor->traceWrappers(&m_callback.cast<v8::Object>());
}
-bool AnyCallbackFunctionOptionalAnyArg::call(ScriptWrappable* scriptWrappable, ScriptValue optionalAnyArg, ScriptValue& returnValue)
-{
- if (!m_scriptState->contextIsValid())
- return false;
+bool AnyCallbackFunctionOptionalAnyArg::call(ScriptWrappable* scriptWrappable, ScriptValue optionalAnyArg, ScriptValue& returnValue) {
+ if (!m_scriptState->contextIsValid())
+ return false;
- ExecutionContext* context = m_scriptState->getExecutionContext();
- DCHECK(context);
- if (context->activeDOMObjectsAreSuspended() || context->activeDOMObjectsAreStopped())
- return false;
+ ExecutionContext* context = m_scriptState->getExecutionContext();
+ DCHECK(context);
+ if (context->activeDOMObjectsAreSuspended() || context->activeDOMObjectsAreStopped())
+ return false;
- if (m_callback.isEmpty())
- return false;
+ if (m_callback.isEmpty())
+ return false;
- // TODO(bashi): Make sure that using TrackExceptionState is OK.
- // crbug.com/653769
- TrackExceptionState exceptionState;
- ScriptState::Scope scope(m_scriptState.get());
+ // TODO(bashi): Make sure that using TrackExceptionState is OK.
+ // crbug.com/653769
+ TrackExceptionState exceptionState;
+ ScriptState::Scope scope(m_scriptState.get());
- v8::Local<v8::Value> optionalAnyArgArgument = optionalAnyArg.v8Value();
+ v8::Local<v8::Value> optionalAnyArgArgument = optionalAnyArg.v8Value();
- v8::Local<v8::Value> thisValue = toV8(scriptWrappable, m_scriptState->context()->Global(), m_scriptState->isolate());
+ v8::Local<v8::Value> thisValue = toV8(scriptWrappable, m_scriptState->context()->Global(), m_scriptState->isolate());
- v8::Local<v8::Value> argv[] = { optionalAnyArgArgument };
+ v8::Local<v8::Value> argv[] = { optionalAnyArgArgument };
- v8::Local<v8::Value> v8ReturnValue;
- v8::TryCatch exceptionCatcher(m_scriptState->isolate());
- exceptionCatcher.SetVerbose(true);
+ v8::Local<v8::Value> v8ReturnValue;
+ v8::TryCatch exceptionCatcher(m_scriptState->isolate());
+ exceptionCatcher.SetVerbose(true);
- if (V8ScriptRunner::callFunction(m_callback.newLocal(m_scriptState->isolate()), m_scriptState->getExecutionContext(), thisValue, 1, argv, m_scriptState->isolate()).ToLocal(&v8ReturnValue))
- {
- ScriptValue cppValue = ScriptValue(ScriptState::current(m_scriptState->isolate()), v8ReturnValue);
- returnValue = cppValue;
- return true;
- }
- return false;
+ if (V8ScriptRunner::callFunction(m_callback.newLocal(m_scriptState->isolate()), m_scriptState->getExecutionContext(), thisValue, 1, argv, m_scriptState->isolate()).ToLocal(&v8ReturnValue)) {
+ ScriptValue cppValue = ScriptValue(ScriptState::current(m_scriptState->isolate()), v8ReturnValue);
+ returnValue = cppValue;
+ return true;
+ }
+ return false;
}
-} // namespace blink
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698