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

Unified Diff: Source/bindings/v8/ScriptFunctionCall.h

Issue 293963003: Remove ScriptObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/bindings/v8/ScriptDebugServer.cpp ('k') | Source/bindings/v8/ScriptFunctionCall.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/ScriptFunctionCall.h
diff --git a/Source/bindings/v8/ScriptFunctionCall.h b/Source/bindings/v8/ScriptFunctionCall.h
index c35d5f0df5b11693ad1cf42b579700b0874e3f8b..f323c3f635937252980c9c5bebf52dd82cbb4af5 100644
--- a/Source/bindings/v8/ScriptFunctionCall.h
+++ b/Source/bindings/v8/ScriptFunctionCall.h
@@ -31,7 +31,7 @@
#ifndef ScriptFunctionCall_h
#define ScriptFunctionCall_h
-#include "bindings/v8/ScriptObject.h"
+#include "bindings/v8/ScriptValue.h"
#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
@@ -43,7 +43,6 @@ namespace WebCore {
public:
ScriptCallArgumentHandler(ScriptState* scriptState) : m_scriptState(scriptState) { }
- void appendArgument(const ScriptObject&);
void appendArgument(const ScriptValue&);
void appendArgument(const String&);
void appendArgument(const char*);
@@ -62,13 +61,13 @@ namespace WebCore {
class ScriptFunctionCall : public ScriptCallArgumentHandler {
public:
- ScriptFunctionCall(const ScriptObject& thisObject, const String& name);
+ ScriptFunctionCall(const ScriptValue& thisObject, const String& name);
ScriptValue call(bool& hadException, bool reportExceptions = true);
ScriptValue call();
- ScriptObject construct(bool& hadException, bool reportExceptions = true);
+ ScriptValue construct(bool& hadException, bool reportExceptions = true);
protected:
- ScriptObject m_thisObject;
+ ScriptValue m_thisObject;
String m_name;
};
« no previous file with comments | « Source/bindings/v8/ScriptDebugServer.cpp ('k') | Source/bindings/v8/ScriptFunctionCall.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698