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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 virtual blink::WebString acceptLanguages(); | 386 virtual blink::WebString acceptLanguages(); |
387 virtual void navigateBackForwardSoon(int offset); | 387 virtual void navigateBackForwardSoon(int offset); |
388 virtual int historyBackListCount(); | 388 virtual int historyBackListCount(); |
389 virtual int historyForwardListCount(); | 389 virtual int historyForwardListCount(); |
390 virtual blink::WebSpeechRecognizer* speechRecognizer(); | 390 virtual blink::WebSpeechRecognizer* speechRecognizer(); |
391 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 391 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
392 virtual void zoomLevelChanged(); | 392 virtual void zoomLevelChanged(); |
393 virtual void pageScaleFactorChanged(); | 393 virtual void pageScaleFactorChanged(); |
394 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 394 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
395 virtual double zoomFactorToZoomLevel(double factor) const; | 395 virtual double zoomFactorToZoomLevel(double factor) const; |
396 virtual void registerProtocolHandler(const blink::WebString& scheme, | |
397 const blink::WebURL& url, | |
398 const blink::WebString& title); | |
399 virtual void unregisterProtocolHandler(const blink::WebString& scheme, | |
400 const blink::WebURL& url); | |
401 virtual blink::WebPageVisibilityState visibilityState() const; | 396 virtual blink::WebPageVisibilityState visibilityState() const; |
402 virtual void draggableRegionsChanged(); | 397 virtual void draggableRegionsChanged(); |
403 | 398 |
404 #if defined(OS_ANDROID) | 399 #if defined(OS_ANDROID) |
405 virtual void scheduleContentIntent(const blink::WebURL& intent); | 400 virtual void scheduleContentIntent(const blink::WebURL& intent); |
406 virtual void cancelScheduledContentIntents(); | 401 virtual void cancelScheduledContentIntents(); |
407 virtual blink::WebContentDetectionResult detectContentAround( | 402 virtual blink::WebContentDetectionResult detectContentAround( |
408 const blink::WebHitTestResult& touch_hit); | 403 const blink::WebHitTestResult& touch_hit); |
409 | 404 |
410 // Only used on Android since all other platforms implement | 405 // Only used on Android since all other platforms implement |
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1022 // use the Observer interface to filter IPC messages and receive frame change | 1017 // use the Observer interface to filter IPC messages and receive frame change |
1023 // notifications. | 1018 // notifications. |
1024 // --------------------------------------------------------------------------- | 1019 // --------------------------------------------------------------------------- |
1025 | 1020 |
1026 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1021 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1027 }; | 1022 }; |
1028 | 1023 |
1029 } // namespace content | 1024 } // namespace content |
1030 | 1025 |
1031 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1026 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |