| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 void onMouseDown(const blink::WebNode& mouse_down_node) override; | 291 void onMouseDown(const blink::WebNode& mouse_down_node) override; |
| 292 void initializeLayerTreeView() override; | 292 void initializeLayerTreeView() override; |
| 293 | 293 |
| 294 // TODO(lfg): Remove once WebViewClient no longer inherits from | 294 // TODO(lfg): Remove once WebViewClient no longer inherits from |
| 295 // WebWidgetClient. | 295 // WebWidgetClient. |
| 296 bool allowsBrokenNullLayerTreeView() const override; | 296 bool allowsBrokenNullLayerTreeView() const override; |
| 297 void closeWidgetSoon() override; | 297 void closeWidgetSoon() override; |
| 298 void convertViewportToWindow(blink::WebRect* rect) override; | 298 void convertViewportToWindow(blink::WebRect* rect) override; |
| 299 void convertWindowToViewport(blink::WebFloatRect* rect) override; | 299 void convertWindowToViewport(blink::WebFloatRect* rect) override; |
| 300 void didAutoResize(const blink::WebSize& newSize) override; | 300 void didAutoResize(const blink::WebSize& newSize) override; |
| 301 void didChangeCursor(const blink::WebCursorInfo& info) override; | |
| 302 void didInvalidateRect(const blink::WebRect& rect) override; | 301 void didInvalidateRect(const blink::WebRect& rect) override; |
| 303 void didMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override; | 302 void didMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override; |
| 304 void didOverscroll(const blink::WebFloatSize& overscrollDelta, | 303 void didOverscroll(const blink::WebFloatSize& overscrollDelta, |
| 305 const blink::WebFloatSize& accumulatedOverscroll, | 304 const blink::WebFloatSize& accumulatedOverscroll, |
| 306 const blink::WebFloatPoint& positionInViewport, | 305 const blink::WebFloatPoint& positionInViewport, |
| 307 const blink::WebFloatSize& velocityInViewport) override; | 306 const blink::WebFloatSize& velocityInViewport) override; |
| 308 void didUpdateTextOfFocusedElementByNonUserInput() override; | 307 void didUpdateTextOfFocusedElementByNonUserInput() override; |
| 309 void hasTouchEventHandlers(bool has_handlers) override; | 308 void hasTouchEventHandlers(bool has_handlers) override; |
| 310 blink::WebLayerTreeView* layerTreeView() override; | 309 blink::WebLayerTreeView* layerTreeView() override; |
| 311 void resetInputMethod() override; | 310 void resetInputMethod() override; |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 // use the Observer interface to filter IPC messages and receive frame change | 940 // use the Observer interface to filter IPC messages and receive frame change |
| 942 // notifications. | 941 // notifications. |
| 943 // --------------------------------------------------------------------------- | 942 // --------------------------------------------------------------------------- |
| 944 | 943 |
| 945 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 944 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 946 }; | 945 }; |
| 947 | 946 |
| 948 } // namespace content | 947 } // namespace content |
| 949 | 948 |
| 950 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 949 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |