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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.cpp

Issue 1648523002: DevTools: move InjectedScript* to inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/core/v8/ScriptFunctionCall.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.cpp
deleted file mode 100644
index 845ec1ad1c593c3a7cd9fff6906576c5e6a26499..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.cpp
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * Copyright (C) 2009 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "bindings/core/v8/ScriptFunctionCall.h"
-
-#include "core/inspector/v8/V8DebuggerClient.h"
-#include "wtf/PassOwnPtr.h"
-
-#include <v8.h>
-
-namespace blink {
-
-static v8::Local<v8::String> v8String(v8::Isolate* isolate, const String& string)
-{
- v8::Local<v8::String> result;
- bool success = v8::String::NewFromUtf8(isolate, string.utf8().data(), v8::NewStringType::kNormal).ToLocal(&result);
- ASSERT_UNUSED(success, success);
- return result;
-}
-
-ScriptFunctionCall::ScriptFunctionCall(V8DebuggerClient* client, v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String& name)
- : m_client(client)
- , m_context(context)
- , m_name(v8String(context->GetIsolate(), name))
- , m_value(value)
-{
-}
-
-void ScriptFunctionCall::appendArgument(v8::Local<v8::Value> value)
-{
- m_arguments.append(value);
-}
-
-void ScriptFunctionCall::appendArgument(const String& argument)
-{
- m_arguments.append(v8String(m_context->GetIsolate(), argument));
-}
-
-void ScriptFunctionCall::appendArgument(int argument)
-{
- m_arguments.append(v8::Number::New(m_context->GetIsolate(), argument));
-}
-
-void ScriptFunctionCall::appendArgument(bool argument)
-{
- m_arguments.append(argument ? v8::True(m_context->GetIsolate()) : v8::False(m_context->GetIsolate()));
-}
-
-void ScriptFunctionCall::appendUndefinedArgument()
-{
- m_arguments.append(v8::Undefined(m_context->GetIsolate()));
-}
-
-v8::Local<v8::Value> ScriptFunctionCall::call(bool& hadException, bool reportExceptions)
-{
- v8::TryCatch tryCatch(m_context->GetIsolate());
- tryCatch.SetVerbose(reportExceptions);
-
- v8::Local<v8::Value> result = callWithoutExceptionHandling();
- hadException = tryCatch.HasCaught();
- return result;
-}
-
-v8::Local<v8::Value> ScriptFunctionCall::call()
-{
- bool hadException = false;
- return call(hadException);
-}
-
-v8::Local<v8::Value> ScriptFunctionCall::callWithoutExceptionHandling()
-{
- v8::Local<v8::Object> thisObject = v8::Local<v8::Object>::Cast(m_value);
- v8::Local<v8::Value> value;
- if (!thisObject->Get(m_context, m_name).ToLocal(&value))
- return v8::Local<v8::Value>();
-
- ASSERT(value->IsFunction());
-
- v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(value);
- OwnPtr<v8::Local<v8::Value>[]> info = adoptArrayPtr(new v8::Local<v8::Value>[m_arguments.size()]);
- for (size_t i = 0; i < m_arguments.size(); ++i) {
- info[i] = m_arguments[i];
- ASSERT(!info[i].IsEmpty());
- }
-
- v8::Local<v8::Value> result;
- if (!m_client->callFunction(function, m_context, thisObject, m_arguments.size(), info.get()).ToLocal(&result))
- return v8::Local<v8::Value>();
- return result;
-}
-
-v8::Local<v8::Function> ScriptFunctionCall::function()
-{
- v8::TryCatch tryCatch(m_context->GetIsolate());
- v8::Local<v8::Object> thisObject = v8::Local<v8::Object>::Cast(m_value);
- v8::Local<v8::Value> value;
- if (!thisObject->Get(m_context, m_name).ToLocal(&value))
- return v8::Local<v8::Function>();
-
- ASSERT(value->IsFunction());
- return v8::Local<v8::Function>::Cast(value);
-}
-
-} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/ScriptFunctionCall.h ('k') | third_party/WebKit/Source/bindings/core/v8/v8.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698