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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 virtual void zoomLevelChanged(); | 427 virtual void zoomLevelChanged(); |
428 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 428 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
429 virtual double zoomFactorToZoomLevel(double factor) const; | 429 virtual double zoomFactorToZoomLevel(double factor) const; |
430 virtual void registerProtocolHandler(const blink::WebString& scheme, | 430 virtual void registerProtocolHandler(const blink::WebString& scheme, |
431 const blink::WebURL& base_url, | 431 const blink::WebURL& base_url, |
432 const blink::WebURL& url, | 432 const blink::WebURL& url, |
433 const blink::WebString& title); | 433 const blink::WebString& title); |
434 virtual void unregisterProtocolHandler(const blink::WebString& scheme, | 434 virtual void unregisterProtocolHandler(const blink::WebString& scheme, |
435 const blink::WebURL& base_url, | 435 const blink::WebURL& base_url, |
436 const blink::WebURL& url); | 436 const blink::WebURL& url); |
| 437 virtual void registerProtocolHandler(const blink::WebString& scheme, |
| 438 const blink::WebURL& url, |
| 439 const blink::WebString& title); |
| 440 virtual void unregisterProtocolHandler(const blink::WebString& scheme, |
| 441 const blink::WebURL& url); |
437 virtual blink::WebPageVisibilityState visibilityState() const; | 442 virtual blink::WebPageVisibilityState visibilityState() const; |
438 virtual blink::WebPushClient* webPushClient(); | 443 virtual blink::WebPushClient* webPushClient(); |
439 virtual void draggableRegionsChanged(); | 444 virtual void draggableRegionsChanged(); |
440 | 445 |
441 #if defined(OS_ANDROID) | 446 #if defined(OS_ANDROID) |
442 virtual void scheduleContentIntent(const blink::WebURL& intent); | 447 virtual void scheduleContentIntent(const blink::WebURL& intent); |
443 virtual void cancelScheduledContentIntents(); | 448 virtual void cancelScheduledContentIntents(); |
444 virtual blink::WebContentDetectionResult detectContentAround( | 449 virtual blink::WebContentDetectionResult detectContentAround( |
445 const blink::WebHitTestResult& touch_hit); | 450 const blink::WebHitTestResult& touch_hit); |
446 | 451 |
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1144 // use the Observer interface to filter IPC messages and receive frame change | 1149 // use the Observer interface to filter IPC messages and receive frame change |
1145 // notifications. | 1150 // notifications. |
1146 // --------------------------------------------------------------------------- | 1151 // --------------------------------------------------------------------------- |
1147 | 1152 |
1148 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1153 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1149 }; | 1154 }; |
1150 | 1155 |
1151 } // namespace content | 1156 } // namespace content |
1152 | 1157 |
1153 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1158 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |