| 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 ANDROID_WEBVIEW_BROWSER_RENDER_HOST_RENDER_VIEW_HOST_EXT_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_RENDER_HOST_RENDER_VIEW_HOST_EXT_H_ |
| 6 #define ANDROID_WEBVIEW_BROWSER_RENDER_HOST_RENDER_VIEW_HOST_EXT_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_RENDER_HOST_RENDER_VIEW_HOST_EXT_H_ |
| 7 | 7 |
| 8 #include "content/public/browser/web_contents_observer.h" | 8 #include "content/public/browser/web_contents_observer.h" |
| 9 | 9 |
| 10 #include "android_webview/common/aw_hit_test_data.h" | 10 #include "android_webview/common/aw_hit_test_data.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 void MarkHitTestDataRead(); | 59 void MarkHitTestDataRead(); |
| 60 | 60 |
| 61 // Return |last_hit_test_data_|. Note that this is unavoidably racy; | 61 // Return |last_hit_test_data_|. Note that this is unavoidably racy; |
| 62 // the corresponding public WebView API is as well. | 62 // the corresponding public WebView API is as well. |
| 63 const AwHitTestData& GetLastHitTestData() const; | 63 const AwHitTestData& GetLastHitTestData() const; |
| 64 | 64 |
| 65 // Sets the zoom level for text only. Used in layout modes other than | 65 // Sets the zoom level for text only. Used in layout modes other than |
| 66 // Text Autosizing. | 66 // Text Autosizing. |
| 67 void SetTextZoomLevel(double level); | 67 void SetTextZoomLevel(double level); |
| 68 | 68 |
| 69 void SetAutoResizeMode(bool enable, int width); |
| 70 |
| 69 void ResetScrollAndScaleState(); | 71 void ResetScrollAndScaleState(); |
| 70 | 72 |
| 71 // Sets the initial page scale. This overrides initial scale set by | 73 // Sets the initial page scale. This overrides initial scale set by |
| 72 // the meta viewport tag. | 74 // the meta viewport tag. |
| 73 void SetInitialPageScale(double page_scale_factor); | 75 void SetInitialPageScale(double page_scale_factor); |
| 74 void SetBackgroundColor(SkColor c); | 76 void SetBackgroundColor(SkColor c); |
| 75 void SetJsOnlineProperty(bool network_up); | 77 void SetJsOnlineProperty(bool network_up); |
| 76 | 78 |
| 77 private: | 79 private: |
| 78 // content::WebContentsObserver implementation. | 80 // content::WebContentsObserver implementation. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 101 AwHitTestData last_hit_test_data_; | 103 AwHitTestData last_hit_test_data_; |
| 102 | 104 |
| 103 bool has_new_hit_test_data_; | 105 bool has_new_hit_test_data_; |
| 104 | 106 |
| 105 DISALLOW_COPY_AND_ASSIGN(AwRenderViewHostExt); | 107 DISALLOW_COPY_AND_ASSIGN(AwRenderViewHostExt); |
| 106 }; | 108 }; |
| 107 | 109 |
| 108 } // namespace android_webview | 110 } // namespace android_webview |
| 109 | 111 |
| 110 #endif // ANDROID_WEBVIEW_BROWSER_RENDER_HOST_RENDER_VIEW_HOST_EXT_H_ | 112 #endif // ANDROID_WEBVIEW_BROWSER_RENDER_HOST_RENDER_VIEW_HOST_EXT_H_ |
| OLD | NEW |