summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/InspectorFrontend.h
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-02-02 14:57:50 +0000
committerSteve Block <steveblock@google.com>2010-02-04 15:06:55 +0000
commitd0825bca7fe65beaee391d30da42e937db621564 (patch)
tree7461c49eb5844ffd1f35d1ba2c8b7584c1620823 /WebCore/inspector/InspectorFrontend.h
parent3db770bd97c5a59b6c7574ca80a39e5a51c1defd (diff)
downloadexternal_webkit-d0825bca7fe65beaee391d30da42e937db621564.zip
external_webkit-d0825bca7fe65beaee391d30da42e937db621564.tar.gz
external_webkit-d0825bca7fe65beaee391d30da42e937db621564.tar.bz2
Merge webkit.org at r54127 : Initial merge by git
Change-Id: Ib661abb595522f50ea406f72d3a0ce17f7193c82
Diffstat (limited to 'WebCore/inspector/InspectorFrontend.h')
-rw-r--r--WebCore/inspector/InspectorFrontend.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/WebCore/inspector/InspectorFrontend.h b/WebCore/inspector/InspectorFrontend.h
index 03dac14..0b52566 100644
--- a/WebCore/inspector/InspectorFrontend.h
+++ b/WebCore/inspector/InspectorFrontend.h
@@ -54,7 +54,7 @@ namespace WebCore {
class ScriptString;
class Storage;
- class InspectorFrontend {
+ class InspectorFrontend : public Noncopyable {
public:
InspectorFrontend(InspectorController* inspectorController, ScriptState*, ScriptObject webInspector);
~InspectorFrontend();
@@ -63,13 +63,17 @@ namespace WebCore {
ScriptObject newScriptObject();
void didCommitLoad();
- void addConsoleMessage(const ScriptObject& messageObj, const Vector<ScriptString>& frames, const Vector<ScriptValue> wrappedArguments, const String& message);
- void updateConsoleMessageRepeatCount(const int count);
+
+ void populateFrontendSettings(const String& settings);
+
+ void updateConsoleMessageExpiredCount(unsigned count);
+ void addConsoleMessage(const ScriptObject& messageObj, const Vector<ScriptString>& frames, ScriptState*, const Vector<ScriptValue> arguments, const String& message);
+ void updateConsoleMessageRepeatCount(unsigned count);
void clearConsoleMessages();
- bool addResource(unsigned long identifier, const ScriptObject& resourceObj);
bool updateResource(unsigned long identifier, const ScriptObject& resourceObj);
void removeResource(unsigned long identifier);
+ void didGetResourceContent(int callId, const String& content);
void updateFocusedNode(long nodeId);
void setAttachedWindow(bool attached);
@@ -92,7 +96,7 @@ namespace WebCore {
void setRecordingProfile(bool isProfiling);
void didGetProfileHeaders(int callId, const ScriptArray& headers);
void didGetProfile(int callId, const ScriptValue& profile);
- void pausedScript(const ScriptValue& callFrames);
+ void pausedScript(const String& callFrames);
void resumedScript();
#endif