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

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

Issue 2898743002: Draggable peeking/fullscreen launcher with transparent background. (Closed)
Patch Set: Created 3 years, 7 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"
11 #include "third_party/skia/include/core/SkColor.h" 11 #include "third_party/skia/include/core/SkColor.h"
12 #include "ui/app_list/app_list_export.h" 12 #include "ui/app_list/app_list_export.h"
13 #include "ui/base/resource/resource_bundle.h" 13 #include "ui/base/resource/resource_bundle.h"
14 #include "ui/gfx/animation/tween.h" 14 #include "ui/gfx/animation/tween.h"
15 #include "ui/gfx/shadow_value.h" 15 #include "ui/gfx/shadow_value.h"
16 16
17 namespace app_list { 17 namespace app_list {
18 18
19 namespace fullscreen_constants {
20 APP_LIST_EXPORT extern const size_t kNumStartPageTiles;
21
xiyuan 2017/05/24 18:28:17 nit: get rid of this empty line (or insert one bef
newcomer 2017/05/25 23:10:51 Done.
22 } // namespace fullscreen_constants
vadimt 2017/05/22 23:36:56 Empty line after?
newcomer 2017/05/25 23:10:51 Done.
19 APP_LIST_EXPORT extern const SkColor kContentsBackgroundColor; 23 APP_LIST_EXPORT extern const SkColor kContentsBackgroundColor;
20 APP_LIST_EXPORT extern const SkColor kSearchBoxBackground; 24 APP_LIST_EXPORT extern const SkColor kSearchBoxBackground;
21 25
22 APP_LIST_EXPORT extern const SkColor kSearchTextColor; 26 APP_LIST_EXPORT extern const SkColor kSearchTextColor;
23 27
24 APP_LIST_EXPORT extern const SkColor kLabelBackgroundColor; 28 APP_LIST_EXPORT extern const SkColor kLabelBackgroundColor;
25 APP_LIST_EXPORT extern const SkColor kTopSeparatorColor; 29 APP_LIST_EXPORT extern const SkColor kTopSeparatorColor;
26 APP_LIST_EXPORT extern const SkColor kBottomSeparatorColor; 30 APP_LIST_EXPORT extern const SkColor kBottomSeparatorColor;
27 31
28 APP_LIST_EXPORT extern const SkColor kDialogSeparatorColor; 32 APP_LIST_EXPORT extern const SkColor kDialogSeparatorColor;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 95
92 // Returns the shadow values for a view at |z_height|. 96 // Returns the shadow values for a view at |z_height|.
93 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); 97 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height);
94 98
95 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); 99 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows();
96 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); 100 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows();
97 101
98 } // namespace app_list 102 } // namespace app_list
99 103
100 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ 104 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698