initial import
[vuplus_webkit] / Source / WebKit / chromium / src / WebDevToolsAgentImpl.h
1 /*
2  * Copyright (C) 2010 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 WebDevToolsAgentImpl_h
32 #define WebDevToolsAgentImpl_h
33
34 #include "InspectorClient.h"
35
36 #include "PageOverlay.h"
37 #include "WebDevToolsAgentPrivate.h"
38
39 #include <wtf/Forward.h>
40 #include <wtf/OwnPtr.h>
41
42 namespace WebCore {
43 class Document;
44 class Frame;
45 class GraphicsContext;
46 class InspectorClient;
47 class InspectorController;
48 class Node;
49 }
50
51 namespace WebKit {
52
53 class DebuggerAgentImpl;
54 class WebDevToolsAgentClient;
55 class WebFrame;
56 class WebFrameImpl;
57 class WebString;
58 class WebURLRequest;
59 class WebURLResponse;
60 class WebViewImpl;
61 struct WebURLError;
62 struct WebDevToolsMessageData;
63
64 class WebDevToolsAgentImpl : public WebDevToolsAgentPrivate,
65                              public WebCore::InspectorClient,
66                              public PageOverlay::PageOverlayClient {
67 public:
68     WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* client);
69     virtual ~WebDevToolsAgentImpl();
70
71     // WebDevToolsAgentPrivate implementation.
72     virtual void didClearWindowObject(WebFrameImpl* frame);
73
74     // WebDevToolsAgent implementation.
75     virtual void attach();
76     virtual void detach();
77     virtual void frontendLoaded();
78     virtual void didNavigate();
79     virtual void dispatchOnInspectorBackend(const WebString& message);
80     virtual void inspectElementAt(const WebPoint& point);
81     virtual void evaluateInWebInspector(long callId, const WebString& script);
82     virtual void setJavaScriptProfilingEnabled(bool);
83     virtual void setRuntimeProperty(const WebString& name, const WebString& value);
84     virtual void setProcessId(long);
85
86     // InspectorClient implementation.
87     virtual void inspectorDestroyed();
88     virtual void openInspectorFrontend(WebCore::InspectorController*);
89     virtual void highlight();
90     virtual void hideHighlight();
91     virtual void updateInspectorStateCookie(const WTF::String&);
92     virtual bool sendMessageToFrontend(const WTF::String&);
93
94     virtual void clearBrowserCache();
95     virtual void clearBrowserCookies();
96
97     int hostId() { return m_hostId; }
98
99     // PageOverlayClient
100     virtual void paintPageOverlay(WebCore::GraphicsContext&);
101
102 private:
103     WebCore::InspectorController* inspectorController();
104     WebCore::Frame* mainFrame();
105
106     int m_hostId;
107     WebDevToolsAgentClient* m_client;
108     WebViewImpl* m_webViewImpl;
109     OwnPtr<DebuggerAgentImpl> m_debuggerAgentImpl;
110     bool m_attached;
111 };
112
113 } // namespace WebKit
114
115 #endif