| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 void didInvalidateRect(const blink::WebRect& rect) override; | 302 void didInvalidateRect(const blink::WebRect& rect) override; |
| 303 void didOverscroll(const blink::WebFloatSize& overscrollDelta, | 303 void didOverscroll(const blink::WebFloatSize& overscrollDelta, |
| 304 const blink::WebFloatSize& accumulatedOverscroll, | 304 const blink::WebFloatSize& accumulatedOverscroll, |
| 305 const blink::WebFloatPoint& positionInViewport, | 305 const blink::WebFloatPoint& positionInViewport, |
| 306 const blink::WebFloatSize& velocityInViewport) override; | 306 const blink::WebFloatSize& velocityInViewport) override; |
| 307 void didUpdateTextOfFocusedElementByNonUserInput() override; | 307 void didUpdateTextOfFocusedElementByNonUserInput() override; |
| 308 void hasTouchEventHandlers(bool has_handlers) override; | 308 void hasTouchEventHandlers(bool has_handlers) override; |
| 309 blink::WebLayerTreeView* layerTreeView() override; | 309 blink::WebLayerTreeView* layerTreeView() override; |
| 310 void resetInputMethod() override; | 310 void resetInputMethod() override; |
| 311 blink::WebRect rootWindowRect() override; | 311 blink::WebRect rootWindowRect() override; |
| 312 void scheduleAnimation() override; | |
| 313 blink::WebScreenInfo screenInfo() override; | 312 blink::WebScreenInfo screenInfo() override; |
| 314 void setToolTipText(const blink::WebString&, | 313 void setToolTipText(const blink::WebString&, |
| 315 blink::WebTextDirection hint) override; | 314 blink::WebTextDirection hint) override; |
| 316 void setTouchAction(blink::WebTouchAction touchAction) override; | 315 void setTouchAction(blink::WebTouchAction touchAction) override; |
| 317 void setWindowRect(const blink::WebRect& rect) override; | 316 void setWindowRect(const blink::WebRect& rect) override; |
| 318 void showImeIfNeeded() override; | 317 void showImeIfNeeded() override; |
| 319 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, | 318 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, |
| 320 const blink::WebNode& tappedNode, | 319 const blink::WebNode& tappedNode, |
| 321 bool pageChanged) override; | 320 bool pageChanged) override; |
| 322 blink::WebRect windowRect() override; | 321 blink::WebRect windowRect() override; |
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 // use the Observer interface to filter IPC messages and receive frame change | 938 // use the Observer interface to filter IPC messages and receive frame change |
| 940 // notifications. | 939 // notifications. |
| 941 // --------------------------------------------------------------------------- | 940 // --------------------------------------------------------------------------- |
| 942 | 941 |
| 943 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 942 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 944 }; | 943 }; |
| 945 | 944 |
| 946 } // namespace content | 945 } // namespace content |
| 947 | 946 |
| 948 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 947 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |