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

Unified Diff: ash/root_window_controller.h

Issue 149493008: Use active window if on current workspace for fullscreen mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ash/root_window_controller.cc » ('j') | ash/root_window_controller_unittest.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/root_window_controller.h
diff --git a/ash/root_window_controller.h b/ash/root_window_controller.h
index aa1ec2bc5a0b27692a69123bb258557a64f8a465..019dc6d019ba6d33e5b1d1a760e6f881d12a9a86 100644
--- a/ash/root_window_controller.h
+++ b/ash/root_window_controller.h
@@ -112,6 +112,11 @@ class ASH_EXPORT RootWindowController : public ShellObserver {
aura::Window* root_window() { return dispatcher()->window(); }
aura::WindowEventDispatcher* dispatcher() { return root_window_.get(); }
+ const aura::Window* root_window() const { return dispatcher()->window(); }
+ const aura::WindowEventDispatcher* dispatcher() const {
+ return root_window_.get();
+ }
oshima 2014/02/10 19:21:06 can you group by method name instead?
flackr 2014/02/10 21:45:28 Done.
+
RootWindowLayoutManager* root_window_layout() { return root_window_layout_; }
WorkspaceController* workspace_controller() {
« no previous file with comments | « no previous file | ash/root_window_controller.cc » ('j') | ash/root_window_controller_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698