| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 virtual void startDragging(blink::WebLocalFrame* frame, | 406 virtual void startDragging(blink::WebLocalFrame* frame, |
| 407 const blink::WebDragData& data, | 407 const blink::WebDragData& data, |
| 408 blink::WebDragOperationsMask mask, | 408 blink::WebDragOperationsMask mask, |
| 409 const blink::WebImage& image, | 409 const blink::WebImage& image, |
| 410 const blink::WebPoint& imageOffset); | 410 const blink::WebPoint& imageOffset); |
| 411 virtual bool acceptsLoadDrops(); | 411 virtual bool acceptsLoadDrops(); |
| 412 virtual void focusNext(); | 412 virtual void focusNext(); |
| 413 virtual void focusPrevious(); | 413 virtual void focusPrevious(); |
| 414 virtual void focusedNodeChanged(const blink::WebNode& node); | 414 virtual void focusedNodeChanged(const blink::WebNode& node); |
| 415 virtual void didUpdateLayout(); | 415 virtual void didUpdateLayout(); |
| 416 #if defined(OS_ANDROID) | 416 #if defined(OS_ANDROID) || defined(OS_WIN) |
| 417 virtual bool didTapMultipleTargets( | 417 virtual bool didTapMultipleTargets( |
| 418 const blink::WebGestureEvent& event, | 418 const blink::WebGestureEvent& event, |
| 419 const blink::WebVector<blink::WebRect>& target_rects); | 419 const blink::WebVector<blink::WebRect>& target_rects); |
| 420 #endif | 420 #endif |
| 421 virtual blink::WebString acceptLanguages(); | 421 virtual blink::WebString acceptLanguages(); |
| 422 virtual void navigateBackForwardSoon(int offset); | 422 virtual void navigateBackForwardSoon(int offset); |
| 423 virtual int historyBackListCount(); | 423 virtual int historyBackListCount(); |
| 424 virtual int historyForwardListCount(); | 424 virtual int historyForwardListCount(); |
| 425 virtual void postAccessibilityEvent( | 425 virtual void postAccessibilityEvent( |
| 426 const blink::WebAXObject& obj, blink::WebAXEvent event); | 426 const blink::WebAXObject& obj, blink::WebAXEvent event); |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1145 // use the Observer interface to filter IPC messages and receive frame change | 1145 // use the Observer interface to filter IPC messages and receive frame change |
| 1146 // notifications. | 1146 // notifications. |
| 1147 // --------------------------------------------------------------------------- | 1147 // --------------------------------------------------------------------------- |
| 1148 | 1148 |
| 1149 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1149 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1150 }; | 1150 }; |
| 1151 | 1151 |
| 1152 } // namespace content | 1152 } // namespace content |
| 1153 | 1153 |
| 1154 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1154 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |