diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:05:15 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:05:15 -0800 |
commit | 1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353 (patch) | |
tree | 4457a7306ea5acb43fe05bfe0973b1f7faf97ba2 /WebCore/page/android/InspectorControllerAndroid.cpp | |
parent | 9364f22aed35e1a1e9d07c121510f80be3ab0502 (diff) | |
download | external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.zip external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.tar.gz external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.tar.bz2 |
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'WebCore/page/android/InspectorControllerAndroid.cpp')
-rw-r--r-- | WebCore/page/android/InspectorControllerAndroid.cpp | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/WebCore/page/android/InspectorControllerAndroid.cpp b/WebCore/page/android/InspectorControllerAndroid.cpp index b39d32b..c3b88b7 100644 --- a/WebCore/page/android/InspectorControllerAndroid.cpp +++ b/WebCore/page/android/InspectorControllerAndroid.cpp @@ -19,6 +19,7 @@ #include "InspectorController.h" #include "Frame.h" #include "Node.h" +#include "Profile.h" /* // This stub file was created to avoid building and linking in all the @@ -53,7 +54,8 @@ struct InspectorResource : public RefCounted<InspectorResource> { struct InspectorDatabaseResource : public RefCounted<InspectorDatabaseResource> { }; -InspectorController::InspectorController(Page*, InspectorClient*) {} +InspectorController::InspectorController(Page*, InspectorClient*) : + m_startProfiling(this, NULL) {} InspectorController::~InspectorController() {} void InspectorController::windowScriptObjectAvailable() {} @@ -66,12 +68,30 @@ void InspectorController::didFinishLoading(DocumentLoader*, unsigned long) {} void InspectorController::didLoadResourceFromMemoryCache(DocumentLoader*, ResourceRequest const&, ResourceResponse const&, int) {} void InspectorController::frameDetachedFromParent(Frame*) {} -void InspectorController::addMessageToConsole(MessageSource, MessageLevel, String const&, unsigned int, String const&) {} +void InspectorController::addMessageToConsole(MessageSource, MessageLevel, JSC::ExecState*, JSC::ArgList const&, unsigned int, String const&) {} +void InspectorController::addMessageToConsole(MessageSource, MessageLevel, const String& message, unsigned lineNumber, const String& sourceID) {} #if ENABLE(DATABASE) void InspectorController::didOpenDatabase(Database*, String const&, String const&, String const&) {} #endif bool InspectorController::enabled() const { return false; } void InspectorController::inspect(Node*) {} bool InspectorController::windowVisible() { return false; } +void InspectorController::addProfile(PassRefPtr<JSC::Profile>, unsigned int, const JSC::UString&) {} +void InspectorController::inspectedPageDestroyed() {} +void InspectorController::resourceRetrievedByXMLHttpRequest(unsigned long identifier, JSC::UString& sourceString) {} + // new as of SVN change 36269, Sept 8, 2008 +void InspectorController::inspectedWindowScriptObjectCleared(Frame* frame) {} +void InspectorController::startGroup(MessageSource source, JSC::ExecState* exec, const JSC::ArgList& arguments, unsigned lineNumber, const String& sourceURL) {} +void InspectorController::endGroup(MessageSource source, unsigned lineNumber, const String& sourceURL) {} +void InspectorController::startTiming(const JSC::UString& title) {} +bool InspectorController::stopTiming(const JSC::UString& title, double& elapsed) { return false; } +void InspectorController::count(const JSC::UString& title, unsigned lineNumber, const String& sourceID) {} + + // new as of SVN change 38068, Nov 5, 2008 +void InspectorController::mouseDidMoveOverElement(const HitTestResult&, unsigned modifierFlags) {} +void InspectorController::handleMousePressOnNode(Node*) {} +void InspectorController::failedToParseSource(JSC::ExecState* exec, const JSC::SourceCode& source, int errorLine, const JSC::UString& errorMessage) {} +void InspectorController::didParseSource(JSC::ExecState* exec, const JSC::SourceCode& source) {} +void InspectorController::didPause() {} } |