| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 virtual blink::WebGeolocationClient* geolocationClient(); | 455 virtual blink::WebGeolocationClient* geolocationClient(); |
| 456 virtual blink::WebSpeechRecognizer* speechRecognizer(); | 456 virtual blink::WebSpeechRecognizer* speechRecognizer(); |
| 457 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 457 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 458 virtual void zoomLevelChanged(); | 458 virtual void zoomLevelChanged(); |
| 459 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 459 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
| 460 virtual double zoomFactorToZoomLevel(double factor) const; | 460 virtual double zoomFactorToZoomLevel(double factor) const; |
| 461 virtual void registerProtocolHandler(const blink::WebString& scheme, | 461 virtual void registerProtocolHandler(const blink::WebString& scheme, |
| 462 const blink::WebURL& base_url, | 462 const blink::WebURL& base_url, |
| 463 const blink::WebURL& url, | 463 const blink::WebURL& url, |
| 464 const blink::WebString& title); | 464 const blink::WebString& title); |
| 465 virtual void unregisterProtocolHandler(const blink::WebString& scheme, |
| 466 const blink::WebURL& base_url, |
| 467 const blink::WebURL& url); |
| 465 virtual blink::WebPageVisibilityState visibilityState() const; | 468 virtual blink::WebPageVisibilityState visibilityState() const; |
| 466 virtual blink::WebMIDIClient* webMIDIClient(); | 469 virtual blink::WebMIDIClient* webMIDIClient(); |
| 467 virtual blink::WebPushClient* webPushClient(); | 470 virtual blink::WebPushClient* webPushClient(); |
| 468 virtual void draggableRegionsChanged(); | 471 virtual void draggableRegionsChanged(); |
| 469 | 472 |
| 470 #if defined(OS_ANDROID) | 473 #if defined(OS_ANDROID) |
| 471 virtual void scheduleContentIntent(const blink::WebURL& intent); | 474 virtual void scheduleContentIntent(const blink::WebURL& intent); |
| 472 virtual void cancelScheduledContentIntents(); | 475 virtual void cancelScheduledContentIntents(); |
| 473 virtual blink::WebContentDetectionResult detectContentAround( | 476 virtual blink::WebContentDetectionResult detectContentAround( |
| 474 const blink::WebHitTestResult& touch_hit); | 477 const blink::WebHitTestResult& touch_hit); |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1199 // use the Observer interface to filter IPC messages and receive frame change | 1202 // use the Observer interface to filter IPC messages and receive frame change |
| 1200 // notifications. | 1203 // notifications. |
| 1201 // --------------------------------------------------------------------------- | 1204 // --------------------------------------------------------------------------- |
| 1202 | 1205 |
| 1203 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1206 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1204 }; | 1207 }; |
| 1205 | 1208 |
| 1206 } // namespace content | 1209 } // namespace content |
| 1207 | 1210 |
| 1208 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1211 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |