Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(529)

Side by Side Diff: ui/aura/client/virtual_keyboard_observer.h

Issue 195793004: Implement overscroll support for the virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix copyright notice. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef UI_AURA_CLIENT_VIRTUAL_KEYBOARD_OBSERVER_H_
6 #define UI_AURA_CLIENT_VIRTUAL_KEYBOARD_OBSERVER_H_
7
8 #include "ui/aura/aura_export.h"
9
10 namespace gfx {
11 class Rect;
12 }
13
14 namespace aura {
15 namespace client {
16
17 class AURA_EXPORT VirtualKeyboardObserver {
18 public:
19 virtual void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) = 0;
20
21 protected:
22 virtual ~VirtualKeyboardObserver() {}
23 };
24
25 } // namespace client
26 } // namespace aura
27
28 #endif // UI_AURA_CLIENT_VIRTUAL_KEYBOARD_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698