| 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 virtual void setMouseOverURL(const blink::WebURL& url); | 377 virtual void setMouseOverURL(const blink::WebURL& url); |
| 378 virtual void setKeyboardFocusURL(const blink::WebURL& url); | 378 virtual void setKeyboardFocusURL(const blink::WebURL& url); |
| 379 virtual void startDragging(blink::WebLocalFrame* frame, | 379 virtual void startDragging(blink::WebLocalFrame* frame, |
| 380 const blink::WebDragData& data, | 380 const blink::WebDragData& data, |
| 381 blink::WebDragOperationsMask mask, | 381 blink::WebDragOperationsMask mask, |
| 382 const blink::WebImage& image, | 382 const blink::WebImage& image, |
| 383 const blink::WebPoint& imageOffset); | 383 const blink::WebPoint& imageOffset); |
| 384 virtual bool acceptsLoadDrops(); | 384 virtual bool acceptsLoadDrops(); |
| 385 virtual void focusNext(); | 385 virtual void focusNext(); |
| 386 virtual void focusPrevious(); | 386 virtual void focusPrevious(); |
| 387 virtual void focusedNodeChanged(const blink::WebNode& node); | 387 virtual void focusedNodeChanged(const blink::WebNode& fromNode, |
| 388 const blink::WebNode& toNode); |
| 388 virtual void didUpdateLayout(); | 389 virtual void didUpdateLayout(); |
| 389 #if defined(OS_ANDROID) || defined(TOOLKIT_VIEWS) | 390 #if defined(OS_ANDROID) || defined(TOOLKIT_VIEWS) |
| 390 virtual bool didTapMultipleTargets( | 391 virtual bool didTapMultipleTargets( |
| 391 const blink::WebSize& inner_viewport_offset, | 392 const blink::WebSize& inner_viewport_offset, |
| 392 const blink::WebRect& touch_rect, | 393 const blink::WebRect& touch_rect, |
| 393 const blink::WebVector<blink::WebRect>& target_rects); | 394 const blink::WebVector<blink::WebRect>& target_rects); |
| 394 #endif | 395 #endif |
| 395 virtual blink::WebString acceptLanguages(); | 396 virtual blink::WebString acceptLanguages(); |
| 396 virtual void navigateBackForwardSoon(int offset); | 397 virtual void navigateBackForwardSoon(int offset); |
| 397 virtual int historyBackListCount(); | 398 virtual int historyBackListCount(); |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 // use the Observer interface to filter IPC messages and receive frame change | 1059 // use the Observer interface to filter IPC messages and receive frame change |
| 1059 // notifications. | 1060 // notifications. |
| 1060 // --------------------------------------------------------------------------- | 1061 // --------------------------------------------------------------------------- |
| 1061 | 1062 |
| 1062 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1063 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1063 }; | 1064 }; |
| 1064 | 1065 |
| 1065 } // namespace content | 1066 } // namespace content |
| 1066 | 1067 |
| 1067 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1068 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |