| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 const blink::WebString& value); | 444 const blink::WebString& value); |
| 445 virtual blink::WebSpeechRecognizer* speechRecognizer(); | 445 virtual blink::WebSpeechRecognizer* speechRecognizer(); |
| 446 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 446 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 447 virtual void zoomLevelChanged(); | 447 virtual void zoomLevelChanged(); |
| 448 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 448 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
| 449 virtual double zoomFactorToZoomLevel(double factor) const; | 449 virtual double zoomFactorToZoomLevel(double factor) const; |
| 450 virtual void registerProtocolHandler(const blink::WebString& scheme, | 450 virtual void registerProtocolHandler(const blink::WebString& scheme, |
| 451 const blink::WebURL& base_url, | 451 const blink::WebURL& base_url, |
| 452 const blink::WebURL& url, | 452 const blink::WebURL& url, |
| 453 const blink::WebString& title); | 453 const blink::WebString& title); |
| 454 virtual void unregisterProtocolHandler(const blink::WebString& scheme, |
| 455 const blink::WebURL& base_url, |
| 456 const blink::WebURL& url); |
| 454 virtual blink::WebPageVisibilityState visibilityState() const; | 457 virtual blink::WebPageVisibilityState visibilityState() const; |
| 455 virtual blink::WebPushClient* webPushClient(); | 458 virtual blink::WebPushClient* webPushClient(); |
| 456 virtual void draggableRegionsChanged(); | 459 virtual void draggableRegionsChanged(); |
| 457 | 460 |
| 458 #if defined(OS_ANDROID) | 461 #if defined(OS_ANDROID) |
| 459 virtual void scheduleContentIntent(const blink::WebURL& intent); | 462 virtual void scheduleContentIntent(const blink::WebURL& intent); |
| 460 virtual void cancelScheduledContentIntents(); | 463 virtual void cancelScheduledContentIntents(); |
| 461 virtual blink::WebContentDetectionResult detectContentAround( | 464 virtual blink::WebContentDetectionResult detectContentAround( |
| 462 const blink::WebHitTestResult& touch_hit); | 465 const blink::WebHitTestResult& touch_hit); |
| 463 | 466 |
| (...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 // use the Observer interface to filter IPC messages and receive frame change | 1173 // use the Observer interface to filter IPC messages and receive frame change |
| 1171 // notifications. | 1174 // notifications. |
| 1172 // --------------------------------------------------------------------------- | 1175 // --------------------------------------------------------------------------- |
| 1173 | 1176 |
| 1174 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1177 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1175 }; | 1178 }; |
| 1176 | 1179 |
| 1177 } // namespace content | 1180 } // namespace content |
| 1178 | 1181 |
| 1179 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1182 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |