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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 virtual void didUpdateLayout(); | 405 virtual void didUpdateLayout(); |
406 #if defined(OS_ANDROID) | 406 #if defined(OS_ANDROID) |
407 virtual bool didTapMultipleTargets( | 407 virtual bool didTapMultipleTargets( |
408 const blink::WebGestureEvent& event, | 408 const blink::WebGestureEvent& event, |
409 const blink::WebVector<blink::WebRect>& target_rects); | 409 const blink::WebVector<blink::WebRect>& target_rects); |
410 #endif | 410 #endif |
411 virtual blink::WebString acceptLanguages(); | 411 virtual blink::WebString acceptLanguages(); |
412 virtual void navigateBackForwardSoon(int offset); | 412 virtual void navigateBackForwardSoon(int offset); |
413 virtual int historyBackListCount(); | 413 virtual int historyBackListCount(); |
414 virtual int historyForwardListCount(); | 414 virtual int historyForwardListCount(); |
415 virtual void postAccessibilityEvent( | |
416 const blink::WebAXObject& obj, blink::WebAXEvent event); | |
417 virtual blink::WebSpeechRecognizer* speechRecognizer(); | 415 virtual blink::WebSpeechRecognizer* speechRecognizer(); |
418 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 416 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
419 virtual void zoomLevelChanged(); | 417 virtual void zoomLevelChanged(); |
420 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 418 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
421 virtual double zoomFactorToZoomLevel(double factor) const; | 419 virtual double zoomFactorToZoomLevel(double factor) const; |
422 | 420 |
423 // TODO(sanjoy.pal): Remove once blink patch lands. http://crbug.com/406236. | 421 // TODO(sanjoy.pal): Remove once blink patch lands. http://crbug.com/406236. |
424 virtual void registerProtocolHandler(const blink::WebString& scheme, | 422 virtual void registerProtocolHandler(const blink::WebString& scheme, |
425 const blink::WebURL& base_url, | 423 const blink::WebURL& base_url, |
426 const blink::WebURL& url, | 424 const blink::WebURL& url, |
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1128 // use the Observer interface to filter IPC messages and receive frame change | 1126 // use the Observer interface to filter IPC messages and receive frame change |
1129 // notifications. | 1127 // notifications. |
1130 // --------------------------------------------------------------------------- | 1128 // --------------------------------------------------------------------------- |
1131 | 1129 |
1132 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1130 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1133 }; | 1131 }; |
1134 | 1132 |
1135 } // namespace content | 1133 } // namespace content |
1136 | 1134 |
1137 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1135 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |