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

Side by Side Diff: Source/WebKit/chromium/src/WebDevToolsAgentImpl.h

Issue 16896007: Timeline: add support for deferred canvas rasterization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 // WebDevToolsAgent implementation. 85 // WebDevToolsAgent implementation.
86 virtual void attach(); 86 virtual void attach();
87 virtual void reattach(const WebString& savedState); 87 virtual void reattach(const WebString& savedState);
88 virtual void detach(); 88 virtual void detach();
89 virtual void didNavigate(); 89 virtual void didNavigate();
90 virtual void didBeginFrame(); 90 virtual void didBeginFrame();
91 virtual void didCancelFrame(); 91 virtual void didCancelFrame();
92 virtual void willComposite(); 92 virtual void willComposite();
93 virtual void didComposite(); 93 virtual void didComposite();
94 virtual void willUpdateLayer(int layerId);
95 virtual void didUpdateLayer();
94 virtual void dispatchOnInspectorBackend(const WebString& message); 96 virtual void dispatchOnInspectorBackend(const WebString& message);
95 virtual void inspectElementAt(const WebPoint& point); 97 virtual void inspectElementAt(const WebPoint& point);
96 virtual void evaluateInWebInspector(long callId, const WebString& script); 98 virtual void evaluateInWebInspector(long callId, const WebString& script);
97 virtual void setProcessId(long); 99 virtual void setProcessId(long);
98 100
99 // InspectorClient implementation. 101 // InspectorClient implementation.
100 virtual void highlight(); 102 virtual void highlight();
101 virtual void hideHighlight(); 103 virtual void hideHighlight();
102 virtual void updateInspectorStateCookie(const WTF::String&); 104 virtual void updateInspectorStateCookie(const WTF::String&);
103 virtual bool sendMessageToFrontend(const WTF::String&); 105 virtual bool sendMessageToFrontend(const WTF::String&);
(...skipping 28 matching lines...) Expand all
132 int m_hostId; 134 int m_hostId;
133 WebDevToolsAgentClient* m_client; 135 WebDevToolsAgentClient* m_client;
134 WebViewImpl* m_webViewImpl; 136 WebViewImpl* m_webViewImpl;
135 bool m_attached; 137 bool m_attached;
136 OwnPtr<DeviceMetricsSupport> m_metricsSupport; 138 OwnPtr<DeviceMetricsSupport> m_metricsSupport;
137 }; 139 };
138 140
139 } // namespace WebKit 141 } // namespace WebKit
140 142
141 #endif 143 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698