| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 #endif | 323 #endif |
| 324 blink::WebString AcceptLanguages() override; | 324 blink::WebString AcceptLanguages() override; |
| 325 void NavigateBackForwardSoon(int offset) override; | 325 void NavigateBackForwardSoon(int offset) override; |
| 326 int HistoryBackListCount() override; | 326 int HistoryBackListCount() override; |
| 327 int HistoryForwardListCount() override; | 327 int HistoryForwardListCount() override; |
| 328 blink::WebSpeechRecognizer* SpeechRecognizer() override; | 328 blink::WebSpeechRecognizer* SpeechRecognizer() override; |
| 329 void ZoomLimitsChanged(double minimum_level, double maximum_level) override; | 329 void ZoomLimitsChanged(double minimum_level, double maximum_level) override; |
| 330 void PageScaleFactorChanged() override; | 330 void PageScaleFactorChanged() override; |
| 331 virtual double zoomLevelToZoomFactor(double zoom_level) const; | 331 virtual double zoomLevelToZoomFactor(double zoom_level) const; |
| 332 virtual double zoomFactorToZoomLevel(double factor) const; | 332 virtual double zoomFactorToZoomLevel(double factor) const; |
| 333 void DraggableRegionsChanged() override; | |
| 334 void PageImportanceSignalsChanged() override; | 333 void PageImportanceSignalsChanged() override; |
| 335 void DidAutoResize(const blink::WebSize& newSize) override; | 334 void DidAutoResize(const blink::WebSize& newSize) override; |
| 336 blink::WebRect RootWindowRect() override; | 335 blink::WebRect RootWindowRect() override; |
| 337 void DidFocus() override; | 336 void DidFocus() override; |
| 338 | 337 |
| 339 #if defined(OS_ANDROID) | 338 #if defined(OS_ANDROID) |
| 340 // Only used on Android since all other platforms implement | 339 // Only used on Android since all other platforms implement |
| 341 // date and time input fields using MULTIPLE_FIELDS_UI | 340 // date and time input fields using MULTIPLE_FIELDS_UI |
| 342 bool OpenDateTimeChooser(const blink::WebDateTimeChooserParams&, | 341 bool OpenDateTimeChooser(const blink::WebDateTimeChooserParams&, |
| 343 blink::WebDateTimeChooserCompletion*) override; | 342 blink::WebDateTimeChooserCompletion*) override; |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 // --------------------------------------------------------------------------- | 825 // --------------------------------------------------------------------------- |
| 827 | 826 |
| 828 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 827 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 829 | 828 |
| 830 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 829 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 831 }; | 830 }; |
| 832 | 831 |
| 833 } // namespace content | 832 } // namespace content |
| 834 | 833 |
| 835 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 834 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |