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 <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 virtual void setKeyboardFocusURL(const blink::WebURL& url); | 430 virtual void setKeyboardFocusURL(const blink::WebURL& url); |
431 virtual void startDragging(blink::WebLocalFrame* frame, | 431 virtual void startDragging(blink::WebLocalFrame* frame, |
432 const blink::WebDragData& data, | 432 const blink::WebDragData& data, |
433 blink::WebDragOperationsMask mask, | 433 blink::WebDragOperationsMask mask, |
434 const blink::WebImage& image, | 434 const blink::WebImage& image, |
435 const blink::WebPoint& imageOffset); | 435 const blink::WebPoint& imageOffset); |
436 virtual bool acceptsLoadDrops(); | 436 virtual bool acceptsLoadDrops(); |
437 virtual void focusNext(); | 437 virtual void focusNext(); |
438 virtual void focusPrevious(); | 438 virtual void focusPrevious(); |
439 virtual void focusedNodeChanged(const blink::WebNode& node); | 439 virtual void focusedNodeChanged(const blink::WebNode& node); |
440 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); | |
441 virtual void didUpdateLayout(); | 440 virtual void didUpdateLayout(); |
442 #if defined(OS_ANDROID) | 441 #if defined(OS_ANDROID) |
443 virtual bool didTapMultipleTargets( | 442 virtual bool didTapMultipleTargets( |
444 const blink::WebGestureEvent& event, | 443 const blink::WebGestureEvent& event, |
445 const blink::WebVector<blink::WebRect>& target_rects); | 444 const blink::WebVector<blink::WebRect>& target_rects); |
446 #endif | 445 #endif |
447 virtual blink::WebString acceptLanguages(); | 446 virtual blink::WebString acceptLanguages(); |
448 virtual void navigateBackForwardSoon(int offset); | 447 virtual void navigateBackForwardSoon(int offset); |
449 virtual int historyBackListCount(); | 448 virtual int historyBackListCount(); |
450 virtual int historyForwardListCount(); | 449 virtual int historyForwardListCount(); |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1199 // use the Observer interface to filter IPC messages and receive frame change | 1198 // use the Observer interface to filter IPC messages and receive frame change |
1200 // notifications. | 1199 // notifications. |
1201 // --------------------------------------------------------------------------- | 1200 // --------------------------------------------------------------------------- |
1202 | 1201 |
1203 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1202 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1204 }; | 1203 }; |
1205 | 1204 |
1206 } // namespace content | 1205 } // namespace content |
1207 | 1206 |
1208 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1207 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |