Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 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 #include "chrome/browser/fullscreen.h" | |
| 6 | |
| 7 #include "ash/root_window_controller.h" | |
| 8 #include "ash/wm/window_util.h" | |
| 9 | |
| 10 bool IsFullScreenMode() { | |
|
sky
2013/04/23 22:34:08
Don't we want this code for windows when in ash?
| |
| 11 aura::Window* active_window = ash::wm::GetActiveWindow(); | |
| 12 if (!active_window) | |
| 13 return false; | |
| 14 ash::internal::RootWindowController* controller = | |
| 15 ash::internal::RootWindowController::ForWindow(active_window); | |
| 16 if (!controller) | |
| 17 return false; | |
| 18 | |
| 19 return controller->GetFullscreenWindow(); | |
| 20 } | |
| OLD | NEW |