1// Copyright 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#ifndef CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_BAR_CONSTANTS_H_
6#define CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_BAR_CONSTANTS_H_
7
8#include "build/build_config.h"
9
10namespace chrome {
11
12// The height of Bookmarks Bar, when visible in "New Tab Page" mode.
13#if defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
14const int kNTPBookmarkBarHeight = 40;
15#endif
16
17// The height of Bookmarks Bar, when attached to the toolbar.
18#if defined(TOOLKIT_VIEWS)
19const int kBookmarkBarHeight = 28;
20#elif defined(OS_MACOSX)
21// This is actually a little smaller than it should be (by |kVisualHeightOffset|
22// points) because of the visual overlap with the main toolbar. When using this
23// to compute values other than the actual height of the toolbar, be sure to add
24// |kVisualHeightOffset|.
25const int kBookmarkBarHeight = 26;
26#endif
27
28}  // namespace chrome
29
30#endif  // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_BAR_CONSTANTS_H_
31