| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 424 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 425 virtual void zoomLevelChanged(); | 425 virtual void zoomLevelChanged(); |
| 426 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 426 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
| 427 virtual double zoomFactorToZoomLevel(double factor) const; | 427 virtual double zoomFactorToZoomLevel(double factor) const; |
| 428 virtual void registerProtocolHandler(const blink::WebString& scheme, | 428 virtual void registerProtocolHandler(const blink::WebString& scheme, |
| 429 const blink::WebURL& url, | 429 const blink::WebURL& url, |
| 430 const blink::WebString& title); | 430 const blink::WebString& title); |
| 431 virtual void unregisterProtocolHandler(const blink::WebString& scheme, | 431 virtual void unregisterProtocolHandler(const blink::WebString& scheme, |
| 432 const blink::WebURL& url); | 432 const blink::WebURL& url); |
| 433 virtual blink::WebPageVisibilityState visibilityState() const; | 433 virtual blink::WebPageVisibilityState visibilityState() const; |
| 434 virtual blink::WebPushClient* webPushClient(); | |
| 435 virtual void draggableRegionsChanged(); | 434 virtual void draggableRegionsChanged(); |
| 436 | 435 |
| 437 #if defined(OS_ANDROID) | 436 #if defined(OS_ANDROID) |
| 438 virtual void scheduleContentIntent(const blink::WebURL& intent); | 437 virtual void scheduleContentIntent(const blink::WebURL& intent); |
| 439 virtual void cancelScheduledContentIntents(); | 438 virtual void cancelScheduledContentIntents(); |
| 440 virtual blink::WebContentDetectionResult detectContentAround( | 439 virtual blink::WebContentDetectionResult detectContentAround( |
| 441 const blink::WebHitTestResult& touch_hit); | 440 const blink::WebHitTestResult& touch_hit); |
| 442 | 441 |
| 443 // Only used on Android since all other platforms implement | 442 // Only used on Android since all other platforms implement |
| 444 // date and time input fields using MULTIPLE_FIELDS_UI | 443 // date and time input fields using MULTIPLE_FIELDS_UI |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1109 // use the Observer interface to filter IPC messages and receive frame change | 1108 // use the Observer interface to filter IPC messages and receive frame change |
| 1110 // notifications. | 1109 // notifications. |
| 1111 // --------------------------------------------------------------------------- | 1110 // --------------------------------------------------------------------------- |
| 1112 | 1111 |
| 1113 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1112 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1114 }; | 1113 }; |
| 1115 | 1114 |
| 1116 } // namespace content | 1115 } // namespace content |
| 1117 | 1116 |
| 1118 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1117 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |