OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ATHENA_HOME_PUBLIC_HOME_CARD_H_ | 5 #ifndef ATHENA_HOME_PUBLIC_HOME_CARD_H_ |
6 #define ATHENA_HOME_PUBLIC_HOME_CARD_H_ | 6 #define ATHENA_HOME_PUBLIC_HOME_CARD_H_ |
7 | 7 |
8 #include "athena/athena_export.h" | 8 #include "athena/athena_export.h" |
9 | 9 |
10 namespace app_list { | 10 namespace app_list { |
11 class SearchProvider; | 11 class SearchProvider; |
12 } | 12 } |
13 | 13 |
14 namespace aura { | |
15 class Window; | |
16 } | |
oshima
2014/08/28 01:42:06
nit: remove this
Jun Mukai
2014/08/28 16:59:08
Done.
| |
17 | |
14 namespace gfx { | 18 namespace gfx { |
15 class Rect; | 19 class Rect; |
16 } | 20 } |
17 | 21 |
18 namespace athena { | 22 namespace athena { |
19 class AppModelBuilder; | 23 class AppModelBuilder; |
20 | 24 |
21 class ATHENA_EXPORT HomeCard { | 25 class ATHENA_EXPORT HomeCard { |
22 public: | 26 public: |
23 enum State { | 27 enum State { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
55 | 59 |
56 // Called when the virtual keyboard changed has changed to |bounds|. An empty | 60 // Called when the virtual keyboard changed has changed to |bounds|. An empty |
57 // |bounds| indicates that the virtual keyboard is not visible anymore. | 61 // |bounds| indicates that the virtual keyboard is not visible anymore. |
58 virtual void UpdateVirtualKeyboardBounds( | 62 virtual void UpdateVirtualKeyboardBounds( |
59 const gfx::Rect& bounds) = 0; | 63 const gfx::Rect& bounds) = 0; |
60 }; | 64 }; |
61 | 65 |
62 } // namespace athena | 66 } // namespace athena |
63 | 67 |
64 #endif // ATHENA_HOME_PUBLIC_HOME_CARD_H_ | 68 #endif // ATHENA_HOME_PUBLIC_HOME_CARD_H_ |
OLD | NEW |