summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/UIProcess/WebInspectorProxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/UIProcess/WebInspectorProxy.cpp')
-rw-r--r--Source/WebKit2/UIProcess/WebInspectorProxy.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/WebKit2/UIProcess/WebInspectorProxy.cpp b/Source/WebKit2/UIProcess/WebInspectorProxy.cpp
index 2b282a1..b971315 100644
--- a/Source/WebKit2/UIProcess/WebInspectorProxy.cpp
+++ b/Source/WebKit2/UIProcess/WebInspectorProxy.cpp
@@ -38,8 +38,7 @@
#include "WebView.h"
#endif
-#define DISABLE_NOT_IMPLEMENTED_WARNINGS 1
-#include "NotImplemented.h"
+#include <WebCore/NotImplemented.h>
using namespace WebCore;
@@ -196,6 +195,11 @@ void WebInspectorProxy::didClose()
m_isVisible = false;
}
+void WebInspectorProxy::inspectedURLChanged(const String& urlString)
+{
+ platformInspectedURLChanged(urlString);
+}
+
} // namespace WebKit
#endif // ENABLE(INSPECTOR)