summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/inspector/InspectorFrontend.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/inspector/InspectorFrontend.h')
-rw-r--r--src/3rdparty/webkit/WebCore/inspector/InspectorFrontend.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/3rdparty/webkit/WebCore/inspector/InspectorFrontend.h b/src/3rdparty/webkit/WebCore/inspector/InspectorFrontend.h
index d596b3f..1bf3fea 100644
--- a/src/3rdparty/webkit/WebCore/inspector/InspectorFrontend.h
+++ b/src/3rdparty/webkit/WebCore/inspector/InspectorFrontend.h
@@ -30,7 +30,7 @@
#ifndef InspectorFrontend_h
#define InspectorFrontend_h
-#include "JSONObject.h"
+#include "InspectorJSONObject.h"
#include "ScriptState.h"
#include <wtf/PassOwnPtr.h>
@@ -53,12 +53,12 @@ namespace WebCore {
public:
InspectorFrontend(ScriptState*, ScriptObject webInspector);
~InspectorFrontend();
- JSONObject newJSONObject();
+ InspectorJSONObject newInspectorJSONObject();
- void addMessageToConsole(const JSONObject& messageObj, const Vector<ScriptString>& frames, const Vector<ScriptValue> wrappedArguments, const String& message);
+ void addMessageToConsole(const InspectorJSONObject& messageObj, const Vector<ScriptString>& frames, const Vector<ScriptValue> wrappedArguments, const String& message);
- bool addResource(long long identifier, const JSONObject& resourceObj);
- bool updateResource(long long identifier, const JSONObject& resourceObj);
+ bool addResource(long long identifier, const InspectorJSONObject& resourceObj);
+ bool updateResource(long long identifier, const InspectorJSONObject& resourceObj);
void removeResource(long long identifier);
void updateFocusedNode(Node* node);
@@ -86,11 +86,11 @@ namespace WebCore {
#endif
#if ENABLE(DATABASE)
- bool addDatabase(const JSONObject& dbObj);
+ bool addDatabase(const InspectorJSONObject& dbObj);
#endif
#if ENABLE(DOM_STORAGE)
- bool addDOMStorage(const JSONObject& domStorageObj);
+ bool addDOMStorage(const InspectorJSONObject& domStorageObj);
#endif
private: