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 10 namespace chrome { 11 12 // The Bookmark bar height, when visible in "new tab page" mode. 13 #if defined(TOOLKIT_GTK) 14 const int kNTPBookmarkBarHeight = 57; 15 #elif defined(TOOLKIT_VIEWS) || defined(OS_MACOSX) 16 const int kNTPBookmarkBarHeight = 40; 17 #endif 18 19 } // namespace chrome 20 21 #endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_BAR_CONSTANTS_H_ 22