OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 class WebFrame; | 60 class WebFrame; |
61 class WebLocalFrameImpl; | 61 class WebLocalFrameImpl; |
62 class WebString; | 62 class WebString; |
63 class WebURLRequest; | 63 class WebURLRequest; |
64 class WebURLResponse; | 64 class WebURLResponse; |
65 class WebViewImpl; | 65 class WebViewImpl; |
66 struct WebMemoryUsageInfo; | 66 struct WebMemoryUsageInfo; |
67 struct WebURLError; | 67 struct WebURLError; |
68 struct WebDevToolsMessageData; | 68 struct WebDevToolsMessageData; |
69 | 69 |
70 class WebDevToolsAgentImpl FINAL : | 70 class WebDevToolsAgentImpl FINAL |
71 public WebDevToolsAgentPrivate, | 71 : public WebDevToolsAgentPrivate |
72 public blink::InspectorClient, | 72 , public blink::InspectorClient |
73 public blink::InspectorFrontendChannel, | 73 , public blink::InspectorFrontendChannel |
74 public WebPageOverlay, | 74 , public WebPageOverlay |
75 private WebThread::TaskObserver { | 75 , private WebThread::TaskObserver { |
76 public: | 76 public: |
77 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien
t); | 77 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien
t); |
78 virtual ~WebDevToolsAgentImpl(); | 78 virtual ~WebDevToolsAgentImpl(); |
79 | 79 |
80 WebDevToolsAgentClient* client() { return m_client; } | 80 WebDevToolsAgentClient* client() { return m_client; } |
81 | 81 |
82 // WebDevToolsAgentPrivate implementation. | 82 // WebDevToolsAgentPrivate implementation. |
83 virtual void didCreateScriptContext(WebLocalFrameImpl*, int worldId) OVERRID
E; | 83 virtual void didCreateScriptContext(WebLocalFrameImpl*, int worldId) OVERRID
E; |
84 virtual bool handleInputEvent(blink::Page*, const WebInputEvent&) OVERRIDE; | 84 virtual bool handleInputEvent(blink::Page*, const WebInputEvent&) OVERRIDE; |
85 virtual void didLayout() OVERRIDE; | 85 virtual void didLayout() OVERRIDE; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 OwnPtr<blink::IntPoint> m_lastPinchAnchorCss; | 162 OwnPtr<blink::IntPoint> m_lastPinchAnchorCss; |
163 OwnPtr<blink::IntPoint> m_lastPinchAnchorDip; | 163 OwnPtr<blink::IntPoint> m_lastPinchAnchorDip; |
164 | 164 |
165 typedef Vector<RefPtr<blink::JSONObject> > FrontendMessageQueue; | 165 typedef Vector<RefPtr<blink::JSONObject> > FrontendMessageQueue; |
166 FrontendMessageQueue m_frontendMessageQueue; | 166 FrontendMessageQueue m_frontendMessageQueue; |
167 }; | 167 }; |
168 | 168 |
169 } // namespace blink | 169 } // namespace blink |
170 | 170 |
171 #endif | 171 #endif |
OLD | NEW |