Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(484)

Side by Side Diff: Source/web/WebDevToolsAgentImpl.h

Issue 932523003: DevTools: [Blink-side] Fix debugger command order (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/web/WebDevToolsAgentImpl.cpp » ('j') | Source/web/WebDevToolsAgentImpl.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/web/WebDevToolsAgentImpl.cpp » ('j') | Source/web/WebDevToolsAgentImpl.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698