diff options
Diffstat (limited to 'WebCore/platform/ScrollView.h')
-rw-r--r-- | WebCore/platform/ScrollView.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/WebCore/platform/ScrollView.h b/WebCore/platform/ScrollView.h index b78d5bc..761e594 100644 --- a/WebCore/platform/ScrollView.h +++ b/WebCore/platform/ScrollView.h @@ -235,6 +235,16 @@ namespace WebCore { class ScrollViewPrivate; ScrollViewPrivate* m_data; #endif +#ifdef ANDROID + ScrollView(); + ~ScrollView(); + // we call layout() just before creating the picture + // this allows ignoring invals generated by layout() during this phase + void ignoreUpdateContents(bool ); + private: + struct ScrollViewPrivate; + ScrollViewPrivate* m_data; +#endif }; } // namespace WebCore |