| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |