diff options
author | Andrei Popescu <andreip@google.com> | 2009-08-19 18:07:37 +0100 |
---|---|---|
committer | Andrei Popescu <andreip@google.com> | 2009-08-19 18:13:28 +0100 |
commit | 72f4ed34e756eaa90b94b74b7a6f43ec33310822 (patch) | |
tree | d1d56f96d1f4322c654921f8e6d309e41483b1a5 /WebCore/platform | |
parent | 058ccc7ba0a4d59b9f6e92808332aa9895425fc7 (diff) | |
download | external_webkit-72f4ed34e756eaa90b94b74b7a6f43ec33310822.zip external_webkit-72f4ed34e756eaa90b94b74b7a6f43ec33310822.tar.gz external_webkit-72f4ed34e756eaa90b94b74b7a6f43ec33310822.tar.bz2 |
fix JSC support.
Diffstat (limited to 'WebCore/platform')
-rw-r--r-- | WebCore/platform/android/TemporaryLinkStubs.cpp | 114 |
1 files changed, 2 insertions, 112 deletions
diff --git a/WebCore/platform/android/TemporaryLinkStubs.cpp b/WebCore/platform/android/TemporaryLinkStubs.cpp index f9ab682..33344ed 100644 --- a/WebCore/platform/android/TemporaryLinkStubs.cpp +++ b/WebCore/platform/android/TemporaryLinkStubs.cpp @@ -455,8 +455,8 @@ PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String&) #if USE(JSC) namespace JSC { namespace Bindings { -bool dispatchJNICall(ExecState*, const void* targetAppletView, jobject obj, bool isStatic, JNIType returnType, - jmethodID methodID, jvalue* args, jvalue& result, const char* callingURL, JSValuePtr& exceptionDescription) +bool dispatchJNICall(ExecState*, const void* targetAppletView, jobject obj, bool isStatic, JNIType returnType, + jmethodID methodID, jvalue* args, jvalue& result, const char* callingURL, JSValue& exceptionDescription) { notImplemented(); return false; @@ -550,114 +550,4 @@ OpaqueJSClassContextData::~OpaqueJSClassContextData() notImplemented(); } -// as we don't use inspector/*.cpp, add stub here. - -namespace WebCore { - -JSValuePtr toJS(ExecState*, Profile*) -{ - notImplemented(); - return jsNull(); -} - -JSValuePtr JavaScriptCallFrame::evaluate(const UString& script, JSValuePtr& exception) const -{ - notImplemented(); - return jsNull(); -} - -const ScopeChainNode* JavaScriptCallFrame::scopeChain() const -{ - notImplemented(); - return 0; -} - -JSObject* JavaScriptCallFrame::thisObject() const -{ - notImplemented(); - return 0; -} - -DebuggerCallFrame::Type JavaScriptCallFrame::type() const -{ - notImplemented(); - return (DebuggerCallFrame::Type) 0; -} - -JavaScriptCallFrame* JavaScriptCallFrame::caller() -{ - notImplemented(); - return 0; -} - -String JavaScriptCallFrame::functionName() const -{ - notImplemented(); - return String(); -} - -} - -JavaScriptDebugServer::JavaScriptDebugServer() : - m_recompileTimer(this, 0) -{ - notImplemented(); -} - -JavaScriptDebugServer::~JavaScriptDebugServer() -{ - notImplemented(); -} - -JavaScriptDebugServer& JavaScriptDebugServer::shared() -{ - static JavaScriptDebugServer server; - notImplemented(); - return server; -} - -void JavaScriptDebugServer::atStatement(const DebuggerCallFrame&, int, int) -{ - notImplemented(); -} - -void JavaScriptDebugServer::callEvent(const DebuggerCallFrame&, int, int) -{ - notImplemented(); -} - -void JavaScriptDebugServer::didExecuteProgram(const DebuggerCallFrame&, int, int) -{ - notImplemented(); -} - -void JavaScriptDebugServer::didReachBreakpoint(const DebuggerCallFrame&, int, int) -{ - notImplemented(); -} - -void JavaScriptDebugServer::exception(const DebuggerCallFrame&, int, int) -{ - notImplemented(); -} - -void JavaScriptDebugServer::sourceParsed(ExecState*, const SourceCode&, int, const UString&) -{ - notImplemented(); -} - -void JavaScriptDebugServer::pageCreated(Page*) -{ - notImplemented(); -} - -void JavaScriptDebugServer::returnEvent(const DebuggerCallFrame&, int, int) -{ - notImplemented(); -} - -void JavaScriptDebugServer::willExecuteProgram(const DebuggerCallFrame&, int, int) -{ - notImplemented(); -} #endif |