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

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 14 matching lines...) Expand all
25 const SkColor kPagerSelectedColor = SkColorSetRGB(0x46, 0x8F, 0xFC); 25 const SkColor kPagerSelectedColor = SkColorSetRGB(0x46, 0x8F, 0xFC);
26 26
27 const SkColor kResultBorderColor = SkColorSetRGB(0xE5, 0xE5, 0xE5); 27 const SkColor kResultBorderColor = SkColorSetRGB(0xE5, 0xE5, 0xE5);
28 const SkColor kResultDefaultTextColor = SkColorSetRGB(0x33, 0x33, 0x33); 28 const SkColor kResultDefaultTextColor = SkColorSetRGB(0x33, 0x33, 0x33);
29 const SkColor kResultDimmedTextColor = SkColorSetRGB(0x96, 0x96, 0x96); 29 const SkColor kResultDimmedTextColor = SkColorSetRGB(0x96, 0x96, 0x96);
30 const SkColor kResultURLTextColor = SkColorSetRGB(0x00, 0x99, 0x33); 30 const SkColor kResultURLTextColor = SkColorSetRGB(0x00, 0x99, 0x33);
31 31
32 const SkColor kGridTitleColor = SkColorSetRGB(0x5A, 0x5A, 0x5A); 32 const SkColor kGridTitleColor = SkColorSetRGB(0x5A, 0x5A, 0x5A);
33 const SkColor kGridTitleHoverColor = SkColorSetRGB(0x3C, 0x3C, 0x3C); 33 const SkColor kGridTitleHoverColor = SkColorSetRGB(0x3C, 0x3C, 0x3C);
34 34
35 // Color of the borders used in the experimental app list start page.
36 const SkColor kStartPageBorderColor = SkColorSetRGB(0xEE, 0xEE, 0xEE);
37
35 // Color of the folder ink bubble. 38 // Color of the folder ink bubble.
36 const SkColor kFolderBubbleColor = SkColorSetRGB(0xD7, 0xD7, 0xD7); 39 const SkColor kFolderBubbleColor = SkColorSetRGB(0xD7, 0xD7, 0xD7);
37 40
38 // Duration in milliseconds for page transition. 41 // Duration in milliseconds for page transition.
39 const int kPageTransitionDurationInMs = 180; 42 const int kPageTransitionDurationInMs = 180;
40 43
41 // Duration in milliseconds for over scroll page transition. 44 // Duration in milliseconds for over scroll page transition.
42 const int kOverscrollPageTransitionDurationMs = 50; 45 const int kOverscrollPageTransitionDurationMs = 50;
43 46
44 // Duration in milliseconds for fading in the target page when opening 47 // Duration in milliseconds for fading in the target page when opening
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 89
87 #if defined(OS_LINUX) 90 #if defined(OS_LINUX)
88 #if defined(GOOGLE_CHROME_BUILD) 91 #if defined(GOOGLE_CHROME_BUILD)
89 const char kAppListWMClass[] = "chrome_app_list"; 92 const char kAppListWMClass[] = "chrome_app_list";
90 #else // CHROMIUM_BUILD 93 #else // CHROMIUM_BUILD
91 const char kAppListWMClass[] = "chromium_app_list"; 94 const char kAppListWMClass[] = "chromium_app_list";
92 #endif 95 #endif
93 #endif 96 #endif
94 97
95 } // namespace app_list 98 } // 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