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

Side by Side Diff: ash/common/wm/workspace/workspace_layout_manager.h

Issue 2122873002: Add virtualKeyboardPrivate.onKeyboardClosed API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test error. Created 4 years, 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 5 #ifndef ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
6 #define ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 6 #define ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 10
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 void OnWindowBoundsChanged(WmWindow* window, 69 void OnWindowBoundsChanged(WmWindow* window,
70 const gfx::Rect& old_bounds, 70 const gfx::Rect& old_bounds,
71 const gfx::Rect& new_bounds) override; 71 const gfx::Rect& new_bounds) override;
72 72
73 // WmActivationObserver overrides: 73 // WmActivationObserver overrides:
74 void OnWindowActivated(WmWindow* gained_active, 74 void OnWindowActivated(WmWindow* gained_active,
75 WmWindow* lost_active) override; 75 WmWindow* lost_active) override;
76 76
77 // keyboard::KeyboardControllerObserver overrides: 77 // keyboard::KeyboardControllerObserver overrides:
78 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; 78 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override;
79 void OnKeyboardClosed() override;
79 80
80 // WindowStateObserver overrides: 81 // WindowStateObserver overrides:
81 void OnPostWindowStateTypeChange(wm::WindowState* window_state, 82 void OnPostWindowStateTypeChange(wm::WindowState* window_state,
82 wm::WindowStateType old_type) override; 83 wm::WindowStateType old_type) override;
83 84
84 // display::DisplayObserver overrides: 85 // display::DisplayObserver overrides:
85 void OnDisplayMetricsChanged(const display::Display& display, 86 void OnDisplayMetricsChanged(const display::Display& display,
86 uint32_t changed_metrics) override; 87 uint32_t changed_metrics) override;
87 88
88 // ShellObserver overrides: 89 // ShellObserver overrides:
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 // A window which covers the full container and which gets inserted behind the 131 // A window which covers the full container and which gets inserted behind the
131 // topmost visible window. 132 // topmost visible window.
132 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> backdrop_delegate_; 133 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> backdrop_delegate_;
133 134
134 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager); 135 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager);
135 }; 136 };
136 137
137 } // namespace ash 138 } // namespace ash
138 139
139 #endif // ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 140 #endif // ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
OLDNEW
« no previous file with comments | « ash/common/wm/system_modal_container_layout_manager.cc ('k') | ash/common/wm/workspace/workspace_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698