| 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 26 matching lines...) Expand all Loading... |
| 37 #include "public/platform/WebSize.h" | 37 #include "public/platform/WebSize.h" |
| 38 #include "public/platform/WebThread.h" | 38 #include "public/platform/WebThread.h" |
| 39 #include "public/web/WebPageOverlay.h" | 39 #include "public/web/WebPageOverlay.h" |
| 40 #include "web/WebDevToolsAgentPrivate.h" | 40 #include "web/WebDevToolsAgentPrivate.h" |
| 41 #include "wtf/Forward.h" | 41 #include "wtf/Forward.h" |
| 42 #include "wtf/OwnPtr.h" | 42 #include "wtf/OwnPtr.h" |
| 43 #include "wtf/Vector.h" | 43 #include "wtf/Vector.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class Document; | |
| 48 class LocalFrame; | 47 class LocalFrame; |
| 49 class FrameView; | |
| 50 class GraphicsContext; | |
| 51 class InspectorClient; | 48 class InspectorClient; |
| 52 class InspectorController; | 49 class InspectorController; |
| 53 class Node; | |
| 54 class Page; | 50 class Page; |
| 55 class PlatformKeyboardEvent; | 51 class PlatformKeyboardEvent; |
| 56 class WebDevToolsAgentClient; | 52 class WebDevToolsAgentClient; |
| 57 class WebFrame; | |
| 58 class WebLocalFrameImpl; | 53 class WebLocalFrameImpl; |
| 59 class WebString; | 54 class WebString; |
| 60 class WebURLRequest; | |
| 61 class WebURLResponse; | |
| 62 class WebViewImpl; | 55 class WebViewImpl; |
| 63 struct WebMemoryUsageInfo; | |
| 64 struct WebURLError; | |
| 65 struct WebDevToolsMessageData; | |
| 66 | 56 |
| 67 class WebDevToolsAgentImpl final | 57 class WebDevToolsAgentImpl final |
| 68 : public WebDevToolsAgentPrivate | 58 : public WebDevToolsAgentPrivate |
| 69 , public InspectorClient | 59 , public InspectorClient |
| 70 , public InspectorFrontendChannel | 60 , public InspectorFrontendChannel |
| 71 , public WebPageOverlay | 61 , public WebPageOverlay |
| 72 , private WebThread::TaskObserver { | 62 , private WebThread::TaskObserver { |
| 73 public: | 63 public: |
| 74 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien
t); | 64 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien
t); |
| 75 virtual ~WebDevToolsAgentImpl(); | 65 virtual ~WebDevToolsAgentImpl(); |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 OwnPtr<IntPoint> m_lastPinchAnchorCss; | 148 OwnPtr<IntPoint> m_lastPinchAnchorCss; |
| 159 OwnPtr<IntPoint> m_lastPinchAnchorDip; | 149 OwnPtr<IntPoint> m_lastPinchAnchorDip; |
| 160 | 150 |
| 161 typedef Vector<RefPtr<JSONObject> > FrontendMessageQueue; | 151 typedef Vector<RefPtr<JSONObject> > FrontendMessageQueue; |
| 162 FrontendMessageQueue m_frontendMessageQueue; | 152 FrontendMessageQueue m_frontendMessageQueue; |
| 163 }; | 153 }; |
| 164 | 154 |
| 165 } // namespace blink | 155 } // namespace blink |
| 166 | 156 |
| 167 #endif | 157 #endif |
| OLD | NEW |