| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/fullscreen.h" | |
| 6 | |
| 7 #include "ash/wm/window_util.h" | |
| 8 | |
| 9 bool IsFullScreenMode() { | |
| 10 // This is used only by notification_ui_manager.cc. On aura, notification | |
| 11 // will be managed in panel. This is temporary to get certain feature running | |
| 12 // until we implement it for aura. | |
| 13 return ash::wm::IsActiveWindowFullscreen(); | |
| 14 } | |
| OLD | NEW |