OSDN Git Service

Merge WebKit at r78450: Initial merge by git.
[android-x86/external-webkit.git] / 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 "WebDevToolsAgentPrivate.h"
37
38 #include <v8.h>
39 #include <wtf/Forward.h>
40 #include <wtf/OwnPtr.h>
41
42 namespace WebCore {
43 class Document;
44 class Frame;
45 class InspectorClient;
46 class InspectorController;
47 class Node;
48 }
49
50 namespace WebKit {
51
52 class DebuggerAgentImpl;
53 class WebDevToolsAgentClient;
54 class WebFrame;
55 class WebFrameImpl;
56 class WebString;
57 class WebURLRequest;
58 class WebURLResponse;
59 class WebViewImpl;
60 struct WebURLError;
61 struct WebDevToolsMessageData;
62
63 class WebDevToolsAgentImpl : public WebDevToolsAgentPrivate,
64                              public WebCore::InspectorClient {
65 public:
66     WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* client);
67     virtual ~WebDevToolsAgentImpl();
68
69     // WebDevToolsAgentPrivate implementation.
70     virtual void didClearWindowObject(WebFrameImpl* frame);
71
72     // WebDevToolsAgent implementation.
73     virtual void attach();
74     virtual void detach();
75     virtual void frontendLoaded();
76     virtual void didNavigate();
77     virtual void dispatchOnInspectorBackend(const WebString& message);
78     virtual void inspectElementAt(const WebPoint& point);
79     virtual void inspectNode(v8::Handle<v8::Value> node);
80     virtual void evaluateInWebInspector(long callId, const WebString& script);
81     virtual void setRuntimeProperty(const WebString& name, const WebString& value);
82     virtual void setTimelineProfilingEnabled(bool enable);
83
84     virtual void identifierForInitialRequest(unsigned long, WebFrame*, const WebURLRequest&);
85     virtual void willSendRequest(unsigned long, WebURLRequest&);
86     virtual void didReceiveData(unsigned long, int length);
87     virtual void didReceiveResponse(unsigned long, const WebURLResponse&);
88     virtual void didFinishLoading(unsigned long);
89     virtual void didFailLoading(unsigned long, const WebURLError&);
90
91     // InspectorClient implementation.
92     virtual void inspectorDestroyed();
93     virtual void openInspectorFrontend(WebCore::InspectorController*);
94     virtual void highlight(WebCore::Node*);
95     virtual void hideHighlight();
96     virtual void updateInspectorStateCookie(const WTF::String&);
97     virtual bool sendMessageToFrontend(const WTF::String&);
98
99     int hostId() { return m_hostId; }
100
101 private:
102     WebCore::InspectorController* inspectorController();
103     WebCore::Frame* mainFrame();
104
105     int m_hostId;
106     WebDevToolsAgentClient* m_client;
107     WebViewImpl* m_webViewImpl;
108     OwnPtr<DebuggerAgentImpl> m_debuggerAgentImpl;
109     bool m_attached;
110 };
111
112 } // namespace WebKit
113
114 #endif