| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 void resize(const WebSize&) override; | 71 void resize(const WebSize&) override; |
| 72 void resizePinchViewport(const WebSize&) override; | 72 void resizePinchViewport(const WebSize&) override; |
| 73 void willEndLiveResize() override; | 73 void willEndLiveResize() override; |
| 74 void willEnterFullScreen() override; | 74 void willEnterFullScreen() override; |
| 75 void didEnterFullScreen() override; | 75 void didEnterFullScreen() override; |
| 76 void willExitFullScreen() override; | 76 void willExitFullScreen() override; |
| 77 void didExitFullScreen() override; | 77 void didExitFullScreen() override; |
| 78 void beginFrame(const WebBeginFrameArgs&) override; | 78 void beginFrame(const WebBeginFrameArgs&) override; |
| 79 void layout() override; | 79 void layout() override; |
| 80 void paint(WebCanvas*, const WebRect&) override; | 80 void paint(WebCanvas*, const WebRect&) override; |
| 81 void layoutAndPaintAsync(WebLayoutAndPaintAsyncCallback*) override; |
| 81 void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) overri
de; | 82 void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) overri
de; |
| 82 bool isTrackingRepaints() const override; | 83 bool isTrackingRepaints() const override; |
| 83 void themeChanged() override; | 84 void themeChanged() override; |
| 84 bool handleInputEvent(const WebInputEvent&) override; | 85 bool handleInputEvent(const WebInputEvent&) override; |
| 85 void setCursorVisibilityState(bool isVisible) override; | 86 void setCursorVisibilityState(bool isVisible) override; |
| 86 bool hasTouchEventHandlersAt(const WebPoint&) override; | 87 bool hasTouchEventHandlersAt(const WebPoint&) override; |
| 87 | 88 |
| 88 void applyViewportDeltas( | 89 void applyViewportDeltas( |
| 89 const WebFloatSize& pinchViewportDelta, | 90 const WebFloatSize& pinchViewportDelta, |
| 90 const WebFloatSize& mainFrameDelta, | 91 const WebFloatSize& mainFrameDelta, |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 bool m_suppressNextKeypressEvent; | 206 bool m_suppressNextKeypressEvent; |
| 206 | 207 |
| 207 bool m_ignoreInputEvents; | 208 bool m_ignoreInputEvents; |
| 208 | 209 |
| 209 static const WebInputEvent* m_currentInputEvent; | 210 static const WebInputEvent* m_currentInputEvent; |
| 210 }; | 211 }; |
| 211 | 212 |
| 212 } // namespace blink | 213 } // namespace blink |
| 213 | 214 |
| 214 #endif | 215 #endif |
| OLD | NEW |