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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 WebDevToolsAgentClient* client() { return m_client; } | 69 WebDevToolsAgentClient* client() { return m_client; } |
70 | 70 |
71 bool handleInputEvent(Page*, const WebInputEvent&); | 71 bool handleInputEvent(Page*, const WebInputEvent&); |
72 | 72 |
73 // WebDevToolsAgent implementation. | 73 // WebDevToolsAgent implementation. |
74 virtual void attach(const WebString& hostId) override; | 74 virtual void attach(const WebString& hostId) override; |
75 virtual void reattach(const WebString& hostId, const WebString& savedState)
override; | 75 virtual void reattach(const WebString& hostId, const WebString& savedState)
override; |
76 virtual void detach() override; | 76 virtual void detach() override; |
77 virtual void continueProgram() override; | 77 virtual void continueProgram() override; |
78 virtual void dispatchOnInspectorBackend(const WebString& message) override; | 78 virtual void dispatchOnInspectorBackend(const WebString& message, bool ignor
eInterrupt = false) override; |
79 virtual void inspectElementAt(const WebPoint&) override; | 79 virtual void inspectElementAt(const WebPoint&) override; |
80 virtual void evaluateInWebInspector(long callId, const WebString& script) ov
erride; | 80 virtual void evaluateInWebInspector(long callId, const WebString& script) ov
erride; |
81 virtual void setLayerTreeId(int) override; | 81 virtual void setLayerTreeId(int) override; |
82 virtual void processGPUEvent(const GPUEvent&) override; | 82 virtual void processGPUEvent(const GPUEvent&) override; |
83 | 83 |
84 // InspectorClient implementation. | 84 // InspectorClient implementation. |
85 virtual void highlight() override; | 85 virtual void highlight() override; |
86 virtual void hideHighlight() override; | 86 virtual void hideHighlight() override; |
87 virtual void updateInspectorStateCookie(const WTF::String&) override; | 87 virtual void updateInspectorStateCookie(const WTF::String&) override; |
88 virtual void sendProtocolResponse(int callId, PassRefPtr<JSONObject> message
) override; | 88 virtual void sendProtocolResponse(int callId, PassRefPtr<JSONObject> message
) override; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 OwnPtr<IntPoint> m_lastPinchAnchorDip; | 137 OwnPtr<IntPoint> m_lastPinchAnchorDip; |
138 | 138 |
139 typedef Vector<RefPtr<JSONObject> > NotificationQueue; | 139 typedef Vector<RefPtr<JSONObject> > NotificationQueue; |
140 NotificationQueue m_notificationQueue; | 140 NotificationQueue m_notificationQueue; |
141 String m_stateCookie; | 141 String m_stateCookie; |
142 }; | 142 }; |
143 | 143 |
144 } // namespace blink | 144 } // namespace blink |
145 | 145 |
146 #endif | 146 #endif |
OLD | NEW |