| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 dispatchOnInspectorBackend(const WebString& message); | 94 virtual void dispatchOnInspectorBackend(const WebString& message); |
| 95 virtual void inspectElementAt(const WebPoint& point); | 95 virtual void inspectElementAt(const WebPoint& point); |
| 96 virtual void evaluateInWebInspector(long callId, const WebString& script); | 96 virtual void evaluateInWebInspector(long callId, const WebString& script); |
| 97 virtual void setProcessId(long); | 97 virtual void setProcessId(long); |
| 98 virtual void setLayerTreeId(int); |
| 98 | 99 |
| 99 // InspectorClient implementation. | 100 // InspectorClient implementation. |
| 100 virtual void highlight(); | 101 virtual void highlight(); |
| 101 virtual void hideHighlight(); | 102 virtual void hideHighlight(); |
| 102 virtual void updateInspectorStateCookie(const WTF::String&); | 103 virtual void updateInspectorStateCookie(const WTF::String&); |
| 103 virtual bool sendMessageToFrontend(const WTF::String&); | 104 virtual bool sendMessageToFrontend(const WTF::String&); |
| 104 | 105 |
| 105 virtual void clearBrowserCache(); | 106 virtual void clearBrowserCache(); |
| 106 virtual void clearBrowserCookies(); | 107 virtual void clearBrowserCookies(); |
| 107 | 108 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 132 int m_hostId; | 133 int m_hostId; |
| 133 WebDevToolsAgentClient* m_client; | 134 WebDevToolsAgentClient* m_client; |
| 134 WebViewImpl* m_webViewImpl; | 135 WebViewImpl* m_webViewImpl; |
| 135 bool m_attached; | 136 bool m_attached; |
| 136 OwnPtr<DeviceMetricsSupport> m_metricsSupport; | 137 OwnPtr<DeviceMetricsSupport> m_metricsSupport; |
| 137 }; | 138 }; |
| 138 | 139 |
| 139 } // namespace WebKit | 140 } // namespace WebKit |
| 140 | 141 |
| 141 #endif | 142 #endif |
| OLD | NEW |