| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 virtual void postAccessibilityEvent( | 431 virtual void postAccessibilityEvent( |
| 432 const blink::WebAXObject& obj, blink::WebAXEvent event); | 432 const blink::WebAXObject& obj, blink::WebAXEvent event); |
| 433 virtual void didUpdateInspectorSetting(const blink::WebString& key, | 433 virtual void didUpdateInspectorSetting(const blink::WebString& key, |
| 434 const blink::WebString& value); | 434 const blink::WebString& value); |
| 435 virtual blink::WebSpeechRecognizer* speechRecognizer(); | 435 virtual blink::WebSpeechRecognizer* speechRecognizer(); |
| 436 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 436 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 437 virtual void zoomLevelChanged(); | 437 virtual void zoomLevelChanged(); |
| 438 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 438 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
| 439 virtual double zoomFactorToZoomLevel(double factor) const; | 439 virtual double zoomFactorToZoomLevel(double factor) const; |
| 440 virtual void registerProtocolHandler(const blink::WebString& scheme, | 440 virtual void registerProtocolHandler(const blink::WebString& scheme, |
| 441 const blink::WebURL& base_url, | |
| 442 const blink::WebURL& url, | 441 const blink::WebURL& url, |
| 443 const blink::WebString& title); | 442 const blink::WebString& title); |
| 444 virtual void unregisterProtocolHandler(const blink::WebString& scheme, | 443 virtual void unregisterProtocolHandler(const blink::WebString& scheme, |
| 445 const blink::WebURL& base_url, | |
| 446 const blink::WebURL& url); | 444 const blink::WebURL& url); |
| 447 virtual blink::WebPageVisibilityState visibilityState() const; | 445 virtual blink::WebPageVisibilityState visibilityState() const; |
| 448 virtual blink::WebPushClient* webPushClient(); | 446 virtual blink::WebPushClient* webPushClient(); |
| 449 virtual void draggableRegionsChanged(); | 447 virtual void draggableRegionsChanged(); |
| 450 | 448 |
| 451 #if defined(OS_ANDROID) | 449 #if defined(OS_ANDROID) |
| 452 virtual void scheduleContentIntent(const blink::WebURL& intent); | 450 virtual void scheduleContentIntent(const blink::WebURL& intent); |
| 453 virtual void cancelScheduledContentIntents(); | 451 virtual void cancelScheduledContentIntents(); |
| 454 virtual blink::WebContentDetectionResult detectContentAround( | 452 virtual blink::WebContentDetectionResult detectContentAround( |
| 455 const blink::WebHitTestResult& touch_hit); | 453 const blink::WebHitTestResult& touch_hit); |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1160 // use the Observer interface to filter IPC messages and receive frame change | 1158 // use the Observer interface to filter IPC messages and receive frame change |
| 1161 // notifications. | 1159 // notifications. |
| 1162 // --------------------------------------------------------------------------- | 1160 // --------------------------------------------------------------------------- |
| 1163 | 1161 |
| 1164 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1162 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1165 }; | 1163 }; |
| 1166 | 1164 |
| 1167 } // namespace content | 1165 } // namespace content |
| 1168 | 1166 |
| 1169 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1167 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |