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_NATIVE_AW_CONTENTS_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ |
6 #define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 #include <list> | 9 #include <list> |
10 #include <string> | 10 #include <string> |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 // AwRenderViewHostExtClient implementation. | 186 // AwRenderViewHostExtClient implementation. |
187 virtual void OnWebLayoutPageScaleFactorChanged( | 187 virtual void OnWebLayoutPageScaleFactorChanged( |
188 float page_scale_factor) OVERRIDE; | 188 float page_scale_factor) OVERRIDE; |
189 virtual void OnWebLayoutContentsSizeChanged( | 189 virtual void OnWebLayoutContentsSizeChanged( |
190 const gfx::Size& contents_size) OVERRIDE; | 190 const gfx::Size& contents_size) OVERRIDE; |
191 | 191 |
192 // BrowserViewRendererClient implementation. | 192 // BrowserViewRendererClient implementation. |
193 virtual bool RequestDrawGL(jobject canvas, bool wait_for_completion) OVERRIDE; | 193 virtual bool RequestDrawGL(jobject canvas, bool wait_for_completion) OVERRIDE; |
194 virtual void PostInvalidate() OVERRIDE; | 194 virtual void PostInvalidate() OVERRIDE; |
| 195 virtual void UpdateParentDrawConstraints() OVERRIDE; |
195 virtual void OnNewPicture() OVERRIDE; | 196 virtual void OnNewPicture() OVERRIDE; |
196 virtual gfx::Point GetLocationOnScreen() OVERRIDE; | 197 virtual gfx::Point GetLocationOnScreen() OVERRIDE; |
197 virtual void ScrollContainerViewTo(gfx::Vector2d new_value) OVERRIDE; | 198 virtual void ScrollContainerViewTo(gfx::Vector2d new_value) OVERRIDE; |
198 virtual bool IsFlingActive() const OVERRIDE; | 199 virtual bool IsFlingActive() const OVERRIDE; |
199 virtual void UpdateScrollState(gfx::Vector2d max_scroll_offset, | 200 virtual void UpdateScrollState(gfx::Vector2d max_scroll_offset, |
200 gfx::SizeF contents_size_dip, | 201 gfx::SizeF contents_size_dip, |
201 float page_scale_factor, | 202 float page_scale_factor, |
202 float min_page_scale_factor, | 203 float min_page_scale_factor, |
203 float max_page_scale_factor) OVERRIDE; | 204 float max_page_scale_factor) OVERRIDE; |
204 virtual void DidOverscroll(gfx::Vector2d overscroll_delta) OVERRIDE; | 205 virtual void DidOverscroll(gfx::Vector2d overscroll_delta) OVERRIDE; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 GLViewRendererManager::Key renderer_manager_key_; | 260 GLViewRendererManager::Key renderer_manager_key_; |
260 | 261 |
261 DISALLOW_COPY_AND_ASSIGN(AwContents); | 262 DISALLOW_COPY_AND_ASSIGN(AwContents); |
262 }; | 263 }; |
263 | 264 |
264 bool RegisterAwContents(JNIEnv* env); | 265 bool RegisterAwContents(JNIEnv* env); |
265 | 266 |
266 } // namespace android_webview | 267 } // namespace android_webview |
267 | 268 |
268 #endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 269 #endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ |
OLD | NEW |