Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_PANELS_BOTTOM_BAR_H_ | |
| 6 #define CHROME_BROWSER_UI_PANELS_BOTTOM_BAR_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 // The file contains the helper functions to deal with the top-most system/app | |
| 10 // bar located at the bottom of the screen, like Windows taskbar or MacOSX dock. | |
| 11 // This bottom bar might be set to auto-hide. | |
| 12 | |
| 13 bool IsBottomBarInAutoHideMode(); | |
| 14 int GetBottomBarHeight(); | |
|
Dmitry Titov
2011/08/15 17:55:18
Is it instant height, max height or some other hei
jianli
2011/08/15 18:32:56
Added more comment.
| |
| 15 bool IsBottomBarFullyVisible(); | |
|
Dmitry Titov
2011/08/15 17:55:18
What is expected return value of this and the next
jianli
2011/08/15 18:32:56
Added more comment.
| |
| 16 bool IsBottomBarHidden(); | |
| 17 | |
| 18 #endif // CHROME_BROWSER_UI_PANELS_BOTTOM_BAR_H_ | |
| OLD | NEW |