| Index: athena/home/public/home_card.h
|
| diff --git a/athena/home/public/home_card.h b/athena/home/public/home_card.h
|
| index 6438d4f43c255e605627d14999919a4ed7ef4b60..3bc43ba1a412d8997114441ede1e00fed9f94da4 100644
|
| --- a/athena/home/public/home_card.h
|
| +++ b/athena/home/public/home_card.h
|
| @@ -11,6 +11,10 @@ namespace app_list {
|
| class SearchProvider;
|
| }
|
|
|
| +namespace gfx {
|
| +class Rect;
|
| +}
|
| +
|
| namespace athena {
|
| class AppModelBuilder;
|
|
|
| @@ -28,6 +32,10 @@ class ATHENA_EXPORT HomeCard {
|
| // the ownership of the specified provider.
|
| virtual void RegisterSearchProvider(
|
| app_list::SearchProvider* search_provider) = 0;
|
| +
|
| + // Called when the virtual keyboard changed has changed to |bounds|.
|
| + virtual void UpdateVirtualKeyboardBounds(
|
| + const gfx::Rect& bounds) = 0;
|
| };
|
|
|
| } // namespace athena
|
|
|