| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 // WebDevToolsAgentPrivate implementation. | 77 // WebDevToolsAgentPrivate implementation. |
| 78 virtual void didCreateScriptContext(WebFrameImpl*, int worldId); | 78 virtual void didCreateScriptContext(WebFrameImpl*, int worldId); |
| 79 virtual void webViewResized(const WebSize&); | 79 virtual void webViewResized(const WebSize&); |
| 80 virtual bool handleInputEvent(WebCore::Page*, const WebInputEvent&); | 80 virtual bool handleInputEvent(WebCore::Page*, const WebInputEvent&); |
| 81 | 81 |
| 82 // WebDevToolsAgent implementation. | 82 // WebDevToolsAgent implementation. |
| 83 virtual void attach(); | 83 virtual void attach(); |
| 84 virtual void reattach(const WebString& savedState); | 84 virtual void reattach(const WebString& savedState); |
| 85 virtual void detach(); | 85 virtual void detach(); |
| 86 virtual void didNavigate(); | 86 virtual void didNavigate(); |
| 87 virtual void didBeginFrame(); | 87 virtual void didBeginFrame(int frameId); |
| 88 virtual void didCancelFrame(); | 88 virtual void didCancelFrame(); |
| 89 virtual void willComposite(); | 89 virtual void willComposite(); |
| 90 virtual void didComposite(); | 90 virtual void didComposite(); |
| 91 virtual void dispatchOnInspectorBackend(const WebString& message); | 91 virtual void dispatchOnInspectorBackend(const WebString& message); |
| 92 virtual void inspectElementAt(const WebPoint& point); | 92 virtual void inspectElementAt(const WebPoint& point); |
| 93 virtual void evaluateInWebInspector(long callId, const WebString& script); | 93 virtual void evaluateInWebInspector(long callId, const WebString& script); |
| 94 virtual void setProcessId(long); | 94 virtual void setProcessId(long); |
| 95 virtual void setLayerTreeId(int); | 95 virtual void setLayerTreeId(int); |
| 96 | 96 |
| 97 // InspectorClient implementation. | 97 // InspectorClient implementation. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 bool m_attached; | 131 bool m_attached; |
| 132 bool m_generatingEvent; | 132 bool m_generatingEvent; |
| 133 bool m_deviceMetricsEnabled; | 133 bool m_deviceMetricsEnabled; |
| 134 bool m_isOverlayScrollbarsEnabled; | 134 bool m_isOverlayScrollbarsEnabled; |
| 135 bool m_isCSSViewportEnabled; | 135 bool m_isCSSViewportEnabled; |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 } // namespace WebKit | 138 } // namespace WebKit |
| 139 | 139 |
| 140 #endif | 140 #endif |
| OLD | NEW |