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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 class InspectorClient; | 48 class InspectorClient; |
49 class InspectorController; | 49 class InspectorController; |
50 class IntPoint; | 50 class IntPoint; |
51 class Page; | 51 class Page; |
52 class PlatformKeyboardEvent; | 52 class PlatformKeyboardEvent; |
53 class WebDevToolsAgentClient; | 53 class WebDevToolsAgentClient; |
54 class WebInputEvent; | 54 class WebInputEvent; |
55 class WebLocalFrameImpl; | 55 class WebLocalFrameImpl; |
56 class WebString; | 56 class WebString; |
57 class WebViewImpl; | 57 class WebViewImpl; |
| 58 class DebuggerTask; |
58 | 59 |
59 class WebDevToolsAgentImpl final | 60 class WebDevToolsAgentImpl final |
60 : public WebDevToolsAgent | 61 : public WebDevToolsAgent |
61 , public InspectorClient | 62 , public InspectorClient |
62 , public InspectorFrontendChannel | 63 , public InspectorFrontendChannel |
63 , public WebPageOverlay | 64 , public WebPageOverlay |
64 , private WebThread::TaskObserver { | 65 , private WebThread::TaskObserver { |
65 public: | 66 public: |
66 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien
t); | 67 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien
t); |
67 virtual ~WebDevToolsAgentImpl(); | 68 virtual ~WebDevToolsAgentImpl(); |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 float m_originalDefaultMinimumPageScaleFactor; | 133 float m_originalDefaultMinimumPageScaleFactor; |
133 float m_originalDefaultMaximumPageScaleFactor; | 134 float m_originalDefaultMaximumPageScaleFactor; |
134 | 135 |
135 bool m_touchEventEmulationEnabled; | 136 bool m_touchEventEmulationEnabled; |
136 OwnPtr<IntPoint> m_lastPinchAnchorCss; | 137 OwnPtr<IntPoint> m_lastPinchAnchorCss; |
137 OwnPtr<IntPoint> m_lastPinchAnchorDip; | 138 OwnPtr<IntPoint> m_lastPinchAnchorDip; |
138 | 139 |
139 typedef Vector<RefPtr<JSONObject> > NotificationQueue; | 140 typedef Vector<RefPtr<JSONObject> > NotificationQueue; |
140 NotificationQueue m_notificationQueue; | 141 NotificationQueue m_notificationQueue; |
141 String m_stateCookie; | 142 String m_stateCookie; |
| 143 |
| 144 friend class DebuggerTask; |
142 }; | 145 }; |
143 | 146 |
144 } // namespace blink | 147 } // namespace blink |
145 | 148 |
146 #endif | 149 #endif |
OLD | NEW |