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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 const blink::WebDragData& data, | 374 const blink::WebDragData& data, |
375 blink::WebDragOperationsMask mask, | 375 blink::WebDragOperationsMask mask, |
376 const blink::WebImage& image, | 376 const blink::WebImage& image, |
377 const blink::WebPoint& imageOffset); | 377 const blink::WebPoint& imageOffset); |
378 virtual bool acceptsLoadDrops(); | 378 virtual bool acceptsLoadDrops(); |
379 virtual void focusNext(); | 379 virtual void focusNext(); |
380 virtual void focusPrevious(); | 380 virtual void focusPrevious(); |
381 virtual void focusedNodeChanged(const blink::WebNode& fromNode, | 381 virtual void focusedNodeChanged(const blink::WebNode& fromNode, |
382 const blink::WebNode& toNode); | 382 const blink::WebNode& toNode); |
383 virtual void didUpdateLayout(); | 383 virtual void didUpdateLayout(); |
| 384 virtual void didFirstLayoutAfterFinishedParsing(); |
384 #if defined(OS_ANDROID) || defined(USE_AURA) | 385 #if defined(OS_ANDROID) || defined(USE_AURA) |
385 virtual bool didTapMultipleTargets( | 386 virtual bool didTapMultipleTargets( |
386 const blink::WebSize& inner_viewport_offset, | 387 const blink::WebSize& inner_viewport_offset, |
387 const blink::WebRect& touch_rect, | 388 const blink::WebRect& touch_rect, |
388 const blink::WebVector<blink::WebRect>& target_rects); | 389 const blink::WebVector<blink::WebRect>& target_rects); |
389 #endif | 390 #endif |
390 virtual blink::WebString acceptLanguages(); | 391 virtual blink::WebString acceptLanguages(); |
391 virtual void navigateBackForwardSoon(int offset); | 392 virtual void navigateBackForwardSoon(int offset); |
392 virtual int historyBackListCount(); | 393 virtual int historyBackListCount(); |
393 virtual int historyForwardListCount(); | 394 virtual int historyForwardListCount(); |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1020 // use the Observer interface to filter IPC messages and receive frame change | 1021 // use the Observer interface to filter IPC messages and receive frame change |
1021 // notifications. | 1022 // notifications. |
1022 // --------------------------------------------------------------------------- | 1023 // --------------------------------------------------------------------------- |
1023 | 1024 |
1024 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1025 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1025 }; | 1026 }; |
1026 | 1027 |
1027 } // namespace content | 1028 } // namespace content |
1028 | 1029 |
1029 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1030 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |