| 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 const blink::WebString& value); | 496 const blink::WebString& value); |
| 497 virtual blink::WebGeolocationClient* geolocationClient(); | 497 virtual blink::WebGeolocationClient* geolocationClient(); |
| 498 virtual blink::WebSpeechInputController* speechInputController( | 498 virtual blink::WebSpeechInputController* speechInputController( |
| 499 blink::WebSpeechInputListener* listener); | 499 blink::WebSpeechInputListener* listener); |
| 500 virtual blink::WebSpeechRecognizer* speechRecognizer(); | 500 virtual blink::WebSpeechRecognizer* speechRecognizer(); |
| 501 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 501 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 502 virtual void zoomLevelChanged(); | 502 virtual void zoomLevelChanged(); |
| 503 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 503 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
| 504 virtual double zoomFactorToZoomLevel(double factor) const; | 504 virtual double zoomFactorToZoomLevel(double factor) const; |
| 505 virtual void registerProtocolHandler(const blink::WebString& scheme, | 505 virtual void registerProtocolHandler(const blink::WebString& scheme, |
| 506 const blink::WebString& base_url, | 506 const blink::WebURL& base_url, |
| 507 const blink::WebString& url, | 507 const blink::WebURL& url, |
| 508 const blink::WebString& title); | 508 const blink::WebString& title); |
| 509 virtual blink::WebPageVisibilityState visibilityState() const; | 509 virtual blink::WebPageVisibilityState visibilityState() const; |
| 510 virtual blink::WebUserMediaClient* userMediaClient(); | 510 virtual blink::WebUserMediaClient* userMediaClient(); |
| 511 virtual blink::WebMIDIClient* webMIDIClient(); | 511 virtual blink::WebMIDIClient* webMIDIClient(); |
| 512 virtual void draggableRegionsChanged(); | 512 virtual void draggableRegionsChanged(); |
| 513 | 513 |
| 514 #if defined(OS_ANDROID) | 514 #if defined(OS_ANDROID) |
| 515 virtual void scheduleContentIntent(const blink::WebURL& intent); | 515 virtual void scheduleContentIntent(const blink::WebURL& intent); |
| 516 virtual void cancelScheduledContentIntents(); | 516 virtual void cancelScheduledContentIntents(); |
| 517 virtual blink::WebContentDetectionResult detectContentAround( | 517 virtual blink::WebContentDetectionResult detectContentAround( |
| (...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1510 // use the Observer interface to filter IPC messages and receive frame change | 1510 // use the Observer interface to filter IPC messages and receive frame change |
| 1511 // notifications. | 1511 // notifications. |
| 1512 // --------------------------------------------------------------------------- | 1512 // --------------------------------------------------------------------------- |
| 1513 | 1513 |
| 1514 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1514 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1515 }; | 1515 }; |
| 1516 | 1516 |
| 1517 } // namespace content | 1517 } // namespace content |
| 1518 | 1518 |
| 1519 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1519 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |