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

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

Issue 330603003: Renaming didNavigate to continueProgram (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaselined Created 6 years, 6 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
« no previous file with comments | « no previous file | Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(WebCore::Page*, const WebInputEvent&) OVERRIDE ; 84 virtual bool handleInputEvent(WebCore::Page*, const WebInputEvent&) OVERRIDE ;
85 85
86 // WebDevToolsAgent implementation. 86 // WebDevToolsAgent implementation.
87 virtual void attach(const WebString& hostId) OVERRIDE; 87 virtual void attach(const WebString& hostId) OVERRIDE;
88 virtual void reattach(const WebString& hostId, const WebString& savedState) OVERRIDE; 88 virtual void reattach(const WebString& hostId, const WebString& savedState) OVERRIDE;
89 virtual void detach() OVERRIDE; 89 virtual void detach() OVERRIDE;
90 virtual void didNavigate() OVERRIDE; 90 virtual void didNavigate() OVERRIDE;
91 virtual void continueProgram() OVERRIDE;
91 virtual void didBeginFrame(int frameId) OVERRIDE; 92 virtual void didBeginFrame(int frameId) OVERRIDE;
92 virtual void didCancelFrame() OVERRIDE; 93 virtual void didCancelFrame() OVERRIDE;
93 virtual void willComposite() OVERRIDE; 94 virtual void willComposite() OVERRIDE;
94 virtual void didComposite() OVERRIDE; 95 virtual void didComposite() OVERRIDE;
95 virtual void dispatchOnInspectorBackend(const WebString& message) OVERRIDE; 96 virtual void dispatchOnInspectorBackend(const WebString& message) OVERRIDE;
96 virtual void inspectElementAt(const WebPoint&) OVERRIDE; 97 virtual void inspectElementAt(const WebPoint&) OVERRIDE;
97 virtual void evaluateInWebInspector(long callId, const WebString& script) OV ERRIDE; 98 virtual void evaluateInWebInspector(long callId, const WebString& script) OV ERRIDE;
98 virtual void setProcessId(long) OVERRIDE; 99 virtual void setProcessId(long) OVERRIDE;
99 virtual void setLayerTreeId(int) OVERRIDE; 100 virtual void setLayerTreeId(int) OVERRIDE;
100 virtual void processGPUEvent(const GPUEvent&) OVERRIDE; 101 virtual void processGPUEvent(const GPUEvent&) OVERRIDE;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 OwnPtr<WebCore::IntPoint> m_lastPinchAnchorCss; 161 OwnPtr<WebCore::IntPoint> m_lastPinchAnchorCss;
161 OwnPtr<WebCore::IntPoint> m_lastPinchAnchorDip; 162 OwnPtr<WebCore::IntPoint> m_lastPinchAnchorDip;
162 163
163 typedef Vector<RefPtr<WebCore::JSONObject> > FrontendMessageQueue; 164 typedef Vector<RefPtr<WebCore::JSONObject> > FrontendMessageQueue;
164 FrontendMessageQueue m_frontendMessageQueue; 165 FrontendMessageQueue m_frontendMessageQueue;
165 }; 166 };
166 167
167 } // namespace blink 168 } // namespace blink
168 169
169 #endif 170 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698