blob: 7b2b81a20da7c7b729ed9619338c9729b2cdaa31 [file] [log] [blame]
Ben Murdoche69819b2013-07-17 14:56:49 +01001/*
2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef InspectorClientImpl_h
32#define InspectorClientImpl_h
33
34#include "core/inspector/InspectorClient.h"
35#include "core/inspector/InspectorController.h"
36#include "core/inspector/InspectorFrontendChannel.h"
37#include "wtf/OwnPtr.h"
38
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000039namespace blink {
Ben Murdoche69819b2013-07-17 14:56:49 +010040
41class WebDevToolsAgentClient;
42class WebDevToolsAgentImpl;
43class WebViewImpl;
44
Torne (Richard Coles)09380292014-02-21 12:17:33 +000045class InspectorClientImpl FINAL : public WebCore::InspectorClient, public WebCore::InspectorFrontendChannel {
Ben Murdoche69819b2013-07-17 14:56:49 +010046public:
47 explicit InspectorClientImpl(WebViewImpl*);
Torne (Richard Coles)09380292014-02-21 12:17:33 +000048 virtual ~InspectorClientImpl();
Ben Murdoche69819b2013-07-17 14:56:49 +010049
50 // InspectorClient methods:
Torne (Richard Coles)09380292014-02-21 12:17:33 +000051 virtual void highlight() OVERRIDE;
52 virtual void hideHighlight() OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010053
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000054 virtual void sendMessageToFrontend(PassRefPtr<WebCore::JSONObject>) OVERRIDE;
55 virtual void flush() OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010056
Torne (Richard Coles)09380292014-02-21 12:17:33 +000057 virtual void updateInspectorStateCookie(const WTF::String&) OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010058
Torne (Richard Coles)09380292014-02-21 12:17:33 +000059 virtual void clearBrowserCache() OVERRIDE;
60 virtual void clearBrowserCookies() OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010061
Torne (Richard Coles)09380292014-02-21 12:17:33 +000062 virtual void overrideDeviceMetrics(int, int, float, bool, bool) OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010063
Torne (Richard Coles)09380292014-02-21 12:17:33 +000064 virtual bool overridesShowPaintRects() OVERRIDE;
65 virtual void setShowPaintRects(bool) OVERRIDE;
66 virtual void setShowDebugBorders(bool) OVERRIDE;
67 virtual void setShowFPSCounter(bool) OVERRIDE;
68 virtual void setContinuousPaintingEnabled(bool) OVERRIDE;
69 virtual void setShowScrollBottleneckRects(bool) OVERRIDE;
70 virtual void requestPageScaleFactor(float scale, const WebCore::IntPoint& origin) OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010071
Torne (Richard Coles)09380292014-02-21 12:17:33 +000072 virtual void getAllocatedObjects(HashSet<const void*>&) OVERRIDE;
73 virtual void dumpUncountedAllocatedObjects(const HashMap<const void*, size_t>&) OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010074
Torne (Richard Coles)09380292014-02-21 12:17:33 +000075 virtual void dispatchKeyEvent(const WebCore::PlatformKeyboardEvent&) OVERRIDE;
76 virtual void dispatchMouseEvent(const WebCore::PlatformMouseEvent&) OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010077
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000078 virtual void setTraceEventCallback(const String& categoryFilter, TraceEventCallback) OVERRIDE;
79 virtual void resetTraceEventCallback() OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010080
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000081 virtual void startGPUEventsRecording() OVERRIDE;
82 virtual void stopGPUEventsRecording() OVERRIDE;
83
Ben Murdoche69819b2013-07-17 14:56:49 +010084private:
85 WebDevToolsAgentImpl* devToolsAgent();
86
87 // The WebViewImpl of the page being inspected; gets passed to the constructor
88 WebViewImpl* m_inspectedWebView;
89};
90
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000091} // namespace blink
Ben Murdoche69819b2013-07-17 14:56:49 +010092
93#endif