Index: third_party/WebKit/Source/core/inspector/InjectedScript.h |
diff --git a/third_party/WebKit/Source/core/inspector/InjectedScript.h b/third_party/WebKit/Source/core/inspector/InjectedScript.h |
deleted file mode 100644 |
index 9ecdd6159e2f20cf5ed9c1e2f720d8a4be95c4bc..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/core/inspector/InjectedScript.h |
+++ /dev/null |
@@ -1,136 +0,0 @@ |
-/* |
- * Copyright (C) 2012 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. |
- */ |
- |
-#ifndef InjectedScript_h |
-#define InjectedScript_h |
- |
-#include "core/InspectorTypeBuilder.h" |
-#include "core/inspector/InjectedScriptManager.h" |
-#include "core/inspector/InjectedScriptNative.h" |
-#include "wtf/Allocator.h" |
-#include "wtf/Forward.h" |
-#include <v8.h> |
- |
-namespace blink { |
- |
-class InjectedScriptManager; |
-class JSONValue; |
-class RemoteObjectId; |
-class ScriptFunctionCall; |
-class V8DebuggerClient; |
- |
-typedef String ErrorString; |
- |
-class InjectedScript final { |
- USING_FAST_MALLOC(InjectedScript); |
-public: |
- ~InjectedScript(); |
- |
- void evaluate( |
- ErrorString*, |
- const String& expression, |
- const String& objectGroup, |
- bool includeCommandLineAPI, |
- bool returnByValue, |
- bool generatePreview, |
- RefPtr<TypeBuilder::Runtime::RemoteObject>* result, |
- TypeBuilder::OptOutput<bool>* wasThrown, |
- RefPtr<TypeBuilder::Debugger::ExceptionDetails>*); |
- void callFunctionOn( |
- ErrorString*, |
- const String& objectId, |
- const String& expression, |
- const String& arguments, |
- bool returnByValue, |
- bool generatePreview, |
- RefPtr<TypeBuilder::Runtime::RemoteObject>* result, |
- TypeBuilder::OptOutput<bool>* wasThrown); |
- void evaluateOnCallFrame( |
- ErrorString*, |
- v8::Local<v8::Object> callFrames, |
- bool isAsyncCallStack, |
- const String& callFrameId, |
- const String& expression, |
- const String& objectGroup, |
- bool includeCommandLineAPI, |
- bool returnByValue, |
- bool generatePreview, |
- RefPtr<TypeBuilder::Runtime::RemoteObject>* result, |
- TypeBuilder::OptOutput<bool>* wasThrown, |
- RefPtr<TypeBuilder::Debugger::ExceptionDetails>*); |
- void restartFrame(ErrorString*, v8::Local<v8::Object> callFrames, const String& callFrameId); |
- void getStepInPositions(ErrorString*, v8::Local<v8::Object> callFrames, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location>>& positions); |
- void setVariableValue(ErrorString*, v8::Local<v8::Object> callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr); |
- void getFunctionDetails(ErrorString*, const String& functionId, RefPtr<TypeBuilder::Debugger::FunctionDetails>* result); |
- void getGeneratorObjectDetails(ErrorString*, const String& functionId, RefPtr<TypeBuilder::Debugger::GeneratorObjectDetails>* result); |
- void getCollectionEntries(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CollectionEntry> >* result); |
- void getProperties(ErrorString*, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, bool generatePreview, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor>>* result, RefPtr<TypeBuilder::Debugger::ExceptionDetails>*); |
- void getInternalProperties(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor>>* result, RefPtr<TypeBuilder::Debugger::ExceptionDetails>*); |
- void releaseObject(const String& objectId); |
- |
- PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame>> wrapCallFrames(v8::Local<v8::Object>, int asyncOrdinal); |
- |
- PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapObject(v8::Local<v8::Value>, const String& groupName, bool generatePreview = false) const; |
- PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapTable(v8::Local<v8::Value> table, v8::Local<v8::Value> columns) const; |
- v8::Local<v8::Value> findObject(const RemoteObjectId&) const; |
- |
- String objectIdToObjectGroupName(const String& objectId) const; |
- void releaseObjectGroup(const String&); |
- |
- void setCustomObjectFormatterEnabled(bool); |
- int contextId() { return m_contextId; } |
- |
- v8::Isolate* isolate() { return m_isolate; } |
- v8::Local<v8::Context> context() const; |
- void dispose(); |
- |
-private: |
- friend InjectedScript* InjectedScriptManager::injectedScriptFor(v8::Local<v8::Context>); |
- InjectedScript(InjectedScriptManager*, v8::Local<v8::Context>, v8::Local<v8::Object>, V8DebuggerClient*, PassRefPtr<InjectedScriptNative>, int contextId); |
- |
- bool canAccessInspectedWindow() const; |
- v8::Local<v8::Value> v8Value() const; |
- v8::Local<v8::Value> callFunctionWithEvalEnabled(ScriptFunctionCall&, bool& hadException) const; |
- void makeCall(ScriptFunctionCall&, RefPtr<JSONValue>* result); |
- void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* = 0); |
- void makeCallWithExceptionDetails(ScriptFunctionCall&, RefPtr<JSONValue>* result, RefPtr<TypeBuilder::Debugger::ExceptionDetails>*); |
- |
- InjectedScriptManager* m_manager; |
- v8::Isolate* m_isolate; |
- v8::Global<v8::Context> m_context; |
- v8::Global<v8::Value> m_value; |
- V8DebuggerClient* m_client; |
- RefPtr<InjectedScriptNative> m_native; |
- int m_contextId; |
-}; |
- |
-} // namespace blink |
- |
-#endif |