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

Side by Side Diff: ui/keyboard/keyboard_layout_manager.h

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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
« no previous file with comments | « ui/keyboard/keyboard_controller_unittest.cc ('k') | ui/keyboard/test/run_all_unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ 5 #ifndef UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_
6 #define UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ 6 #define UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_
7 7
8 #include "ui/aura/layout_manager.h" 8 #include "ui/aura/layout_manager.h"
9 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
10 10
11 namespace keyboard { 11 namespace keyboard {
12 12
13 class KeyboardController; 13 class KeyboardController;
14 14
15 // LayoutManager for the virtual keyboard container. Manages a single window 15 // LayoutManager for the virtual keyboard container. Manages a single window
16 // (the virtual keyboard) and keeps it positioned at the bottom of the 16 // (the virtual keyboard) and keeps it positioned at the bottom of the
17 // owner window. 17 // owner window.
18 class KeyboardLayoutManager : public aura::LayoutManager { 18 class KeyboardLayoutManager : public aura::LayoutManager {
19 public: 19 public:
20 explicit KeyboardLayoutManager(KeyboardController* controller) 20 explicit KeyboardLayoutManager(KeyboardController* controller)
21 : controller_(controller), keyboard_(NULL) { 21 : controller_(controller), keyboard_(NULL) {
22 } 22 }
23 23
24 // Overridden from aura::LayoutManager 24 // Overridden from aura::LayoutManager
25 virtual void OnWindowResized() OVERRIDE; 25 virtual void OnWindowResized() override;
26 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; 26 virtual void OnWindowAddedToLayout(aura::Window* child) override;
27 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {} 27 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) override {}
28 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE {} 28 virtual void OnWindowRemovedFromLayout(aura::Window* child) override {}
29 virtual void OnChildWindowVisibilityChanged(aura::Window* child, 29 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
30 bool visible) OVERRIDE {} 30 bool visible) override {}
31 virtual void SetChildBounds(aura::Window* child, 31 virtual void SetChildBounds(aura::Window* child,
32 const gfx::Rect& requested_bounds) OVERRIDE; 32 const gfx::Rect& requested_bounds) override;
33 33
34 private: 34 private:
35 KeyboardController* controller_; 35 KeyboardController* controller_;
36 aura::Window* keyboard_; 36 aura::Window* keyboard_;
37 37
38 DISALLOW_COPY_AND_ASSIGN(KeyboardLayoutManager); 38 DISALLOW_COPY_AND_ASSIGN(KeyboardLayoutManager);
39 }; 39 };
40 40
41 } // namespace keyboard 41 } // namespace keyboard
42 42
43 #endif // UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ 43 #endif // UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_
OLDNEW
« no previous file with comments | « ui/keyboard/keyboard_controller_unittest.cc ('k') | ui/keyboard/test/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698