| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 void convertWindowToViewport(blink::WebFloatRect* rect) override; | 272 void convertWindowToViewport(blink::WebFloatRect* rect) override; |
| 273 void didOverscroll(const blink::WebFloatSize& overscrollDelta, | 273 void didOverscroll(const blink::WebFloatSize& overscrollDelta, |
| 274 const blink::WebFloatSize& accumulatedOverscroll, | 274 const blink::WebFloatSize& accumulatedOverscroll, |
| 275 const blink::WebFloatPoint& positionInViewport, | 275 const blink::WebFloatPoint& positionInViewport, |
| 276 const blink::WebFloatSize& velocityInViewport) override; | 276 const blink::WebFloatSize& velocityInViewport) override; |
| 277 void hasTouchEventHandlers(bool has_handlers) override; | 277 void hasTouchEventHandlers(bool has_handlers) override; |
| 278 blink::WebScreenInfo screenInfo() override; | 278 blink::WebScreenInfo screenInfo() override; |
| 279 void setToolTipText(const blink::WebString&, | 279 void setToolTipText(const blink::WebString&, |
| 280 blink::WebTextDirection hint) override; | 280 blink::WebTextDirection hint) override; |
| 281 void setTouchAction(blink::WebTouchAction touchAction) override; | 281 void setTouchAction(blink::WebTouchAction touchAction) override; |
| 282 void showVirtualKeyboardOnElementFocus() override; | |
| 283 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, | 282 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, |
| 284 const blink::WebNode& tappedNode, | 283 const blink::WebNode& tappedNode, |
| 285 bool pageChanged) override; | 284 bool pageChanged) override; |
| 286 blink::WebWidgetClient* widgetClient() override; | 285 blink::WebWidgetClient* widgetClient() override; |
| 287 | 286 |
| 288 // blink::WebViewClient implementation -------------------------------------- | 287 // blink::WebViewClient implementation -------------------------------------- |
| 289 | 288 |
| 290 blink::WebView* createView(blink::WebLocalFrame* creator, | 289 blink::WebView* createView(blink::WebLocalFrame* creator, |
| 291 const blink::WebURLRequest& request, | 290 const blink::WebURLRequest& request, |
| 292 const blink::WebWindowFeatures& features, | 291 const blink::WebWindowFeatures& features, |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 // --------------------------------------------------------------------------- | 836 // --------------------------------------------------------------------------- |
| 838 | 837 |
| 839 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 838 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 840 | 839 |
| 841 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 840 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 842 }; | 841 }; |
| 843 | 842 |
| 844 } // namespace content | 843 } // namespace content |
| 845 | 844 |
| 846 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 845 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |