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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 const blink::WebDragData& data, | 361 const blink::WebDragData& data, |
362 blink::WebDragOperationsMask mask, | 362 blink::WebDragOperationsMask mask, |
363 const blink::WebImage& image, | 363 const blink::WebImage& image, |
364 const blink::WebPoint& imageOffset) override; | 364 const blink::WebPoint& imageOffset) override; |
365 bool acceptsLoadDrops() override; | 365 bool acceptsLoadDrops() override; |
366 void focusNext() override; | 366 void focusNext() override; |
367 void focusPrevious() override; | 367 void focusPrevious() override; |
368 void focusedNodeChanged(const blink::WebNode& fromNode, | 368 void focusedNodeChanged(const blink::WebNode& fromNode, |
369 const blink::WebNode& toNode) override; | 369 const blink::WebNode& toNode) override; |
370 void didUpdateLayout() override; | 370 void didUpdateLayout() override; |
371 #if defined(OS_ANDROID) || defined(USE_AURA) | 371 #if defined(OS_ANDROID) |
372 bool didTapMultipleTargets( | 372 bool didTapMultipleTargets( |
373 const blink::WebSize& inner_viewport_offset, | 373 const blink::WebSize& inner_viewport_offset, |
374 const blink::WebRect& touch_rect, | 374 const blink::WebRect& touch_rect, |
375 const blink::WebVector<blink::WebRect>& target_rects) override; | 375 const blink::WebVector<blink::WebRect>& target_rects) override; |
376 #endif | 376 #endif |
377 blink::WebString acceptLanguages() override; | 377 blink::WebString acceptLanguages() override; |
378 void navigateBackForwardSoon(int offset) override; | 378 void navigateBackForwardSoon(int offset) override; |
379 int historyBackListCount() override; | 379 int historyBackListCount() override; |
380 int historyForwardListCount() override; | 380 int historyForwardListCount() override; |
381 blink::WebSpeechRecognizer* speechRecognizer() override; | 381 blink::WebSpeechRecognizer* speechRecognizer() override; |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 // use the Observer interface to filter IPC messages and receive frame change | 976 // use the Observer interface to filter IPC messages and receive frame change |
977 // notifications. | 977 // notifications. |
978 // --------------------------------------------------------------------------- | 978 // --------------------------------------------------------------------------- |
979 | 979 |
980 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 980 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
981 }; | 981 }; |
982 | 982 |
983 } // namespace content | 983 } // namespace content |
984 | 984 |
985 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 985 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |