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 25 matching lines...) Expand all Loading... |
36 #include "content/public/common/top_controls_state.h" | 36 #include "content/public/common/top_controls_state.h" |
37 #include "content/public/renderer/render_view.h" | 37 #include "content/public/renderer/render_view.h" |
38 #include "content/renderer/media/webmediaplayer_delegate.h" | 38 #include "content/renderer/media/webmediaplayer_delegate.h" |
39 #include "content/renderer/mouse_lock_dispatcher.h" | 39 #include "content/renderer/mouse_lock_dispatcher.h" |
40 #include "content/renderer/render_frame_impl.h" | 40 #include "content/renderer/render_frame_impl.h" |
41 #include "content/renderer/render_widget.h" | 41 #include "content/renderer/render_widget.h" |
42 #include "content/renderer/renderer_webcookiejar_impl.h" | 42 #include "content/renderer/renderer_webcookiejar_impl.h" |
43 #include "content/renderer/stats_collection_observer.h" | 43 #include "content/renderer/stats_collection_observer.h" |
44 #include "ipc/ipc_platform_file.h" | 44 #include "ipc/ipc_platform_file.h" |
45 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 45 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
| 46 #include "third_party/WebKit/public/web/WebAXObject.h" |
46 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 47 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
47 #include "third_party/WebKit/public/web/WebDataSource.h" | 48 #include "third_party/WebKit/public/web/WebDataSource.h" |
48 #include "third_party/WebKit/public/web/WebFrameClient.h" | 49 #include "third_party/WebKit/public/web/WebFrameClient.h" |
49 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 50 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
50 #include "third_party/WebKit/public/web/WebIconURL.h" | 51 #include "third_party/WebKit/public/web/WebIconURL.h" |
51 #include "third_party/WebKit/public/web/WebInputEvent.h" | 52 #include "third_party/WebKit/public/web/WebInputEvent.h" |
52 #include "third_party/WebKit/public/web/WebNavigationType.h" | 53 #include "third_party/WebKit/public/web/WebNavigationType.h" |
53 #include "third_party/WebKit/public/web/WebNode.h" | 54 #include "third_party/WebKit/public/web/WebNode.h" |
54 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" | 55 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" |
55 #include "third_party/WebKit/public/web/WebPageVisibilityState.h" | 56 #include "third_party/WebKit/public/web/WebPageVisibilityState.h" |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); | 505 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); |
505 virtual void didUpdateLayout(); | 506 virtual void didUpdateLayout(); |
506 #if defined(OS_ANDROID) | 507 #if defined(OS_ANDROID) |
507 virtual bool didTapMultipleTargets( | 508 virtual bool didTapMultipleTargets( |
508 const WebKit::WebGestureEvent& event, | 509 const WebKit::WebGestureEvent& event, |
509 const WebKit::WebVector<WebKit::WebRect>& target_rects); | 510 const WebKit::WebVector<WebKit::WebRect>& target_rects); |
510 #endif | 511 #endif |
511 virtual void navigateBackForwardSoon(int offset); | 512 virtual void navigateBackForwardSoon(int offset); |
512 virtual int historyBackListCount(); | 513 virtual int historyBackListCount(); |
513 virtual int historyForwardListCount(); | 514 virtual int historyForwardListCount(); |
514 virtual void postAccessibilityNotification( | 515 virtual void postAccessibilityEvent( |
515 const WebKit::WebAccessibilityObject& obj, | 516 const WebKit::WebAXObject& obj, WebKit::WebAXEvent event); |
516 WebKit::WebAccessibilityNotification notification); | |
517 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, | 517 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, |
518 const WebKit::WebString& value); | 518 const WebKit::WebString& value); |
519 virtual WebKit::WebGeolocationClient* geolocationClient(); | 519 virtual WebKit::WebGeolocationClient* geolocationClient(); |
520 virtual WebKit::WebSpeechInputController* speechInputController( | 520 virtual WebKit::WebSpeechInputController* speechInputController( |
521 WebKit::WebSpeechInputListener* listener); | 521 WebKit::WebSpeechInputListener* listener); |
522 virtual WebKit::WebSpeechRecognizer* speechRecognizer(); | 522 virtual WebKit::WebSpeechRecognizer* speechRecognizer(); |
523 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); | 523 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); |
524 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 524 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
525 virtual void zoomLevelChanged(); | 525 virtual void zoomLevelChanged(); |
526 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 526 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1553 // use the Observer interface to filter IPC messages and receive frame change | 1553 // use the Observer interface to filter IPC messages and receive frame change |
1554 // notifications. | 1554 // notifications. |
1555 // --------------------------------------------------------------------------- | 1555 // --------------------------------------------------------------------------- |
1556 | 1556 |
1557 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1557 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1558 }; | 1558 }; |
1559 | 1559 |
1560 } // namespace content | 1560 } // namespace content |
1561 | 1561 |
1562 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1562 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |