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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 virtual void didUpdateLayout(); | 411 virtual void didUpdateLayout(); |
412 #if defined(OS_ANDROID) | 412 #if defined(OS_ANDROID) |
413 virtual bool didTapMultipleTargets( | 413 virtual bool didTapMultipleTargets( |
414 const blink::WebGestureEvent& event, | 414 const blink::WebGestureEvent& event, |
415 const blink::WebVector<blink::WebRect>& target_rects); | 415 const blink::WebVector<blink::WebRect>& target_rects); |
416 #endif | 416 #endif |
417 virtual blink::WebString acceptLanguages(); | 417 virtual blink::WebString acceptLanguages(); |
418 virtual void navigateBackForwardSoon(int offset); | 418 virtual void navigateBackForwardSoon(int offset); |
419 virtual int historyBackListCount(); | 419 virtual int historyBackListCount(); |
420 virtual int historyForwardListCount(); | 420 virtual int historyForwardListCount(); |
421 virtual void postAccessibilityEvent( | |
422 const blink::WebAXObject& obj, blink::WebAXEvent event); | |
423 virtual void didUpdateInspectorSetting(const blink::WebString& key, | 421 virtual void didUpdateInspectorSetting(const blink::WebString& key, |
424 const blink::WebString& value); | 422 const blink::WebString& value); |
425 virtual blink::WebSpeechRecognizer* speechRecognizer(); | 423 virtual blink::WebSpeechRecognizer* speechRecognizer(); |
426 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 424 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
427 virtual void zoomLevelChanged(); | 425 virtual void zoomLevelChanged(); |
428 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 426 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
429 virtual double zoomFactorToZoomLevel(double factor) const; | 427 virtual double zoomFactorToZoomLevel(double factor) const; |
430 virtual void registerProtocolHandler(const blink::WebString& scheme, | 428 virtual void registerProtocolHandler(const blink::WebString& scheme, |
431 const blink::WebURL& base_url, | 429 const blink::WebURL& base_url, |
432 const blink::WebURL& url, | 430 const blink::WebURL& url, |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1144 // use the Observer interface to filter IPC messages and receive frame change | 1142 // use the Observer interface to filter IPC messages and receive frame change |
1145 // notifications. | 1143 // notifications. |
1146 // --------------------------------------------------------------------------- | 1144 // --------------------------------------------------------------------------- |
1147 | 1145 |
1148 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1146 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1149 }; | 1147 }; |
1150 | 1148 |
1151 } // namespace content | 1149 } // namespace content |
1152 | 1150 |
1153 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1151 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |