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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 | 298 |
299 // TODO(lfg): Remove once WebViewClient no longer inherits from | 299 // TODO(lfg): Remove once WebViewClient no longer inherits from |
300 // WebWidgetClient. | 300 // WebWidgetClient. |
301 void closeWidgetSoon() override; | 301 void closeWidgetSoon() override; |
302 void convertViewportToWindow(blink::WebRect* rect) override; | 302 void convertViewportToWindow(blink::WebRect* rect) override; |
303 void convertWindowToViewport(blink::WebFloatRect* rect) override; | 303 void convertWindowToViewport(blink::WebFloatRect* rect) override; |
304 void didOverscroll(const blink::WebFloatSize& overscrollDelta, | 304 void didOverscroll(const blink::WebFloatSize& overscrollDelta, |
305 const blink::WebFloatSize& accumulatedOverscroll, | 305 const blink::WebFloatSize& accumulatedOverscroll, |
306 const blink::WebFloatPoint& positionInViewport, | 306 const blink::WebFloatPoint& positionInViewport, |
307 const blink::WebFloatSize& velocityInViewport) override; | 307 const blink::WebFloatSize& velocityInViewport) override; |
308 void didUpdateTextOfFocusedElementByNonUserInput() override; | |
309 void hasTouchEventHandlers(bool has_handlers) override; | 308 void hasTouchEventHandlers(bool has_handlers) override; |
310 void resetInputMethod() override; | 309 void resetInputMethod() override; |
311 blink::WebScreenInfo screenInfo() override; | 310 blink::WebScreenInfo screenInfo() override; |
312 void setToolTipText(const blink::WebString&, | 311 void setToolTipText(const blink::WebString&, |
313 blink::WebTextDirection hint) override; | 312 blink::WebTextDirection hint) override; |
314 void setTouchAction(blink::WebTouchAction touchAction) override; | 313 void setTouchAction(blink::WebTouchAction touchAction) override; |
315 void showImeIfNeeded() override; | 314 void showImeIfNeeded() override; |
316 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, | 315 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, |
317 const blink::WebNode& tappedNode, | 316 const blink::WebNode& tappedNode, |
318 bool pageChanged) override; | 317 bool pageChanged) override; |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
924 // use the Observer interface to filter IPC messages and receive frame change | 923 // use the Observer interface to filter IPC messages and receive frame change |
925 // notifications. | 924 // notifications. |
926 // --------------------------------------------------------------------------- | 925 // --------------------------------------------------------------------------- |
927 | 926 |
928 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 927 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
929 }; | 928 }; |
930 | 929 |
931 } // namespace content | 930 } // namespace content |
932 | 931 |
933 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 932 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |