OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/fullscreen.h" | 5 #include "chrome/browser/fullscreen.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "ui/aura/desktop.h" | 8 #include "ui/aura/desktop.h" |
9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
10 | 10 |
11 bool IsFullScreenMode() { | 11 bool IsFullScreenMode() { |
12 return aura::Desktop::GetInstance()->IsOrContainsFullscreenWindow(); | 12 // This is used only by notification_ui_manager.cc. On aura, notification |
| 13 // will be managed in panel and no need to provide this functionality. |
| 14 NOTREACHED(); |
| 15 return false; |
13 } | 16 } |
OLD | NEW |