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

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

Issue 335343002: Add a DummySearchBoxView to the experimental app list start page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/views/app_list_main_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "ui/app_list/app_list_constants.h" 5 #include "ui/app_list/app_list_constants.h"
6 6
7 namespace app_list { 7 namespace app_list {
8 8
9 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xFB, 0xFB, 0xFB); 9 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xFB, 0xFB, 0xFB);
10 const SkColor kContentsSwitcherBackgroundColor = SK_ColorWHITE; 10 const SkColor kContentsSwitcherBackgroundColor = SK_ColorWHITE;
(...skipping 11 matching lines...) Expand all
22 const SkColor kPagerSelectedColor = SkColorSetRGB(0x46, 0x8F, 0xFC); 22 const SkColor kPagerSelectedColor = SkColorSetRGB(0x46, 0x8F, 0xFC);
23 23
24 const SkColor kResultBorderColor = SkColorSetRGB(0xE5, 0xE5, 0xE5); 24 const SkColor kResultBorderColor = SkColorSetRGB(0xE5, 0xE5, 0xE5);
25 const SkColor kResultDefaultTextColor = SkColorSetRGB(0x33, 0x33, 0x33); 25 const SkColor kResultDefaultTextColor = SkColorSetRGB(0x33, 0x33, 0x33);
26 const SkColor kResultDimmedTextColor = SkColorSetRGB(0x96, 0x96, 0x96); 26 const SkColor kResultDimmedTextColor = SkColorSetRGB(0x96, 0x96, 0x96);
27 const SkColor kResultURLTextColor = SkColorSetRGB(0x00, 0x99, 0x33); 27 const SkColor kResultURLTextColor = SkColorSetRGB(0x00, 0x99, 0x33);
28 28
29 const SkColor kGridTitleColor = SkColorSetRGB(0x5A, 0x5A, 0x5A); 29 const SkColor kGridTitleColor = SkColorSetRGB(0x5A, 0x5A, 0x5A);
30 const SkColor kGridTitleHoverColor = SkColorSetRGB(0x3C, 0x3C, 0x3C); 30 const SkColor kGridTitleHoverColor = SkColorSetRGB(0x3C, 0x3C, 0x3C);
31 31
32 // Color of the borders used in the experimental app list start page.
33 const SkColor kStartPageBorderColor = SkColorSetARGB(0xFF, 0xEE, 0xEE, 0xEE);
tapted 2014/06/19 07:29:24 nit: can just use SkColorSetRGB
calamity 2014/06/19 08:21:47 Done.
34
32 // Color of the folder ink bubble. 35 // Color of the folder ink bubble.
33 const SkColor kFolderBubbleColor = SkColorSetRGB(0xD7, 0xD7, 0xD7); 36 const SkColor kFolderBubbleColor = SkColorSetRGB(0xD7, 0xD7, 0xD7);
34 37
35 // Duration in milliseconds for page transition. 38 // Duration in milliseconds for page transition.
36 const int kPageTransitionDurationInMs = 180; 39 const int kPageTransitionDurationInMs = 180;
37 40
38 // Duration in milliseconds for over scroll page transition. 41 // Duration in milliseconds for over scroll page transition.
39 const int kOverscrollPageTransitionDurationMs = 50; 42 const int kOverscrollPageTransitionDurationMs = 50;
40 43
41 // Duration in milliseconds for fading in the target page when opening 44 // Duration in milliseconds for fading in the target page when opening
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 86
84 #if defined(OS_LINUX) 87 #if defined(OS_LINUX)
85 #if defined(GOOGLE_CHROME_BUILD) 88 #if defined(GOOGLE_CHROME_BUILD)
86 const char kAppListWMClass[] = "chrome_app_list"; 89 const char kAppListWMClass[] = "chrome_app_list";
87 #else // CHROMIUM_BUILD 90 #else // CHROMIUM_BUILD
88 const char kAppListWMClass[] = "chromium_app_list"; 91 const char kAppListWMClass[] = "chromium_app_list";
89 #endif 92 #endif
90 #endif 93 #endif
91 94
92 } // namespace app_list 95 } // namespace app_list
OLDNEW
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/views/app_list_main_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698