| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 void convertWindowToViewport(blink::WebFloatRect* rect) override; | 275 void convertWindowToViewport(blink::WebFloatRect* rect) override; |
| 276 void didOverscroll(const blink::WebFloatSize& overscrollDelta, | 276 void didOverscroll(const blink::WebFloatSize& overscrollDelta, |
| 277 const blink::WebFloatSize& accumulatedOverscroll, | 277 const blink::WebFloatSize& accumulatedOverscroll, |
| 278 const blink::WebFloatPoint& positionInViewport, | 278 const blink::WebFloatPoint& positionInViewport, |
| 279 const blink::WebFloatSize& velocityInViewport) override; | 279 const blink::WebFloatSize& velocityInViewport) override; |
| 280 void hasTouchEventHandlers(bool has_handlers) override; | 280 void hasTouchEventHandlers(bool has_handlers) override; |
| 281 blink::WebScreenInfo screenInfo() override; | 281 blink::WebScreenInfo screenInfo() override; |
| 282 void setToolTipText(const blink::WebString&, | 282 void setToolTipText(const blink::WebString&, |
| 283 blink::WebTextDirection hint) override; | 283 blink::WebTextDirection hint) override; |
| 284 void setTouchAction(blink::WebTouchAction touchAction) override; | 284 void setTouchAction(blink::WebTouchAction touchAction) override; |
| 285 void updateCompositionInfo(bool immediateRequest) override; |
| 285 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, | 286 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, |
| 286 const blink::WebNode& tappedNode, | 287 const blink::WebNode& tappedNode, |
| 287 bool pageChanged) override; | 288 bool pageChanged) override; |
| 288 blink::WebWidgetClient* widgetClient() override; | 289 blink::WebWidgetClient* widgetClient() override; |
| 289 | 290 |
| 290 // blink::WebViewClient implementation -------------------------------------- | 291 // blink::WebViewClient implementation -------------------------------------- |
| 291 | 292 |
| 292 blink::WebView* createView(blink::WebLocalFrame* creator, | 293 blink::WebView* createView(blink::WebLocalFrame* creator, |
| 293 const blink::WebURLRequest& request, | 294 const blink::WebURLRequest& request, |
| 294 const blink::WebWindowFeatures& features, | 295 const blink::WebWindowFeatures& features, |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 // --------------------------------------------------------------------------- | 847 // --------------------------------------------------------------------------- |
| 847 | 848 |
| 848 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 849 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 849 | 850 |
| 850 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 851 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 851 }; | 852 }; |
| 852 | 853 |
| 853 } // namespace content | 854 } // namespace content |
| 854 | 855 |
| 855 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 856 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |