Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: ui/app_list/app_list_constants.h

Issue 2225073002: [Chrome OS] Change layout of the launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address xiyuan@'s comments. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 #ifndef UI_APP_LIST_APP_LIST_CONSTANTS_H_ 5 #ifndef UI_APP_LIST_APP_LIST_CONSTANTS_H_
6 #define UI_APP_LIST_APP_LIST_CONSTANTS_H_ 6 #define UI_APP_LIST_APP_LIST_CONSTANTS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 APP_LIST_EXPORT extern const int kTileIconSize; 69 APP_LIST_EXPORT extern const int kTileIconSize;
70 70
71 APP_LIST_EXPORT extern const SkColor kIconColor; 71 APP_LIST_EXPORT extern const SkColor kIconColor;
72 72
73 APP_LIST_EXPORT extern const int kCenteredPreferredCols; 73 APP_LIST_EXPORT extern const int kCenteredPreferredCols;
74 APP_LIST_EXPORT extern const int kCenteredPreferredRows; 74 APP_LIST_EXPORT extern const int kCenteredPreferredRows;
75 75
76 APP_LIST_EXPORT extern const int kExperimentalPreferredCols; 76 APP_LIST_EXPORT extern const int kExperimentalPreferredCols;
77 APP_LIST_EXPORT extern const int kExperimentalPreferredRows; 77 APP_LIST_EXPORT extern const int kExperimentalPreferredRows;
78 78
79 APP_LIST_EXPORT extern const size_t kNumStartPageTiles;
80
79 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius; 81 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius;
80 82
81 APP_LIST_EXPORT extern const int kExperimentalAppsGridPadding; 83 APP_LIST_EXPORT extern const int kExperimentalAppsGridPadding;
82 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding; 84 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding;
83 85
84 APP_LIST_EXPORT extern size_t kMaxFolderItems; 86 APP_LIST_EXPORT extern size_t kMaxFolderItems;
85 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; 87 APP_LIST_EXPORT extern const size_t kNumFolderTopItems;
86 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; 88 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars;
87 89
88 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; 90 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle;
(...skipping 10 matching lines...) Expand all
99 101
100 // Returns the shadow values for a view at |z_height|. 102 // Returns the shadow values for a view at |z_height|.
101 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); 103 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height);
102 104
103 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); 105 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows();
104 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); 106 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows();
105 107
106 } // namespace app_list 108 } // namespace app_list
107 109
108 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ 110 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698