diff options
author | Romain Guy <romainguy@google.com> | 2011-03-16 15:30:12 -0700 |
---|---|---|
committer | Alex Ray <aray@google.com> | 2013-07-30 13:56:56 -0700 |
commit | 349626eb76ed2618e9a57e63d7acb4b28a85dae4 (patch) | |
tree | 480c55f71ef209c76b7142a7d40ff796e71f55d4 /include | |
parent | 5e35370a3bd941d8e797b9e9beb1b378e00157d5 (diff) | |
download | system_core-349626eb76ed2618e9a57e63d7acb4b28a85dae4.zip system_core-349626eb76ed2618e9a57e63d7acb4b28a85dae4.tar.gz system_core-349626eb76ed2618e9a57e63d7acb4b28a85dae4.tar.bz2 |
Modify the GL renderer's functor to pass the clip to WebView
Change-Id: If5efe399ca58f3000b2883e24e9f3736a2025184
Diffstat (limited to 'include')
-rw-r--r-- | include/utils/Functor.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/utils/Functor.h b/include/utils/Functor.h index 565f4a3..e24ded4 100644 --- a/include/utils/Functor.h +++ b/include/utils/Functor.h @@ -25,8 +25,7 @@ class Functor { public: Functor() {} virtual ~Functor() {} - virtual status_t operator ()() { return true; } - virtual status_t operator ()(float* data, uint32_t len) { return true; } + virtual status_t operator ()(int what, void* data) { return NO_ERROR; } }; }; // namespace android |