| OLD | NEW |
| 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 #import "chrome/browser/ui/cocoa/location_bar/star_decoration.h" | 5 #import "chrome/browser/ui/cocoa/location_bar/star_decoration.h" |
| 6 | 6 |
| 7 #include "chrome/app/chrome_command_ids.h" | 7 #include "chrome/app/chrome_command_ids.h" |
| 8 #include "chrome/browser/command_updater.h" | 8 #include "chrome/browser/command_updater.h" |
| 9 #import "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" | 9 #import "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" |
| 10 #import "chrome/browser/ui/cocoa/themed_window.h" | 10 #import "chrome/browser/ui/cocoa/themed_window.h" |
| 11 #include "chrome/grit/generated_resources.h" | 11 #include "chrome/grit/generated_resources.h" |
| 12 #include "chrome/grit/theme_resources.h" | |
| 13 #include "components/strings/grit/components_strings.h" | 12 #include "components/strings/grit/components_strings.h" |
| 14 #include "components/toolbar/vector_icons.h" | 13 #include "components/toolbar/vector_icons.h" |
| 15 #include "ui/base/l10n/l10n_util_mac.h" | 14 #include "ui/base/l10n/l10n_util_mac.h" |
| 16 #include "ui/base/material_design/material_design_controller.h" | 15 #include "ui/base/material_design/material_design_controller.h" |
| 17 #include "ui/gfx/color_palette.h" | 16 #include "ui/gfx/color_palette.h" |
| 18 | 17 |
| 19 namespace { | 18 namespace { |
| 20 | 19 |
| 21 // The info-bubble point should look like it points to the point | 20 // The info-bubble point should look like it points to the point |
| 22 // between the star's lower tips. The popup should be where the | 21 // between the star's lower tips. The popup should be where the |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 SkColor StarDecoration::GetMaterialIconColor(bool location_bar_is_dark) const { | 63 SkColor StarDecoration::GetMaterialIconColor(bool location_bar_is_dark) const { |
| 65 if (location_bar_is_dark) { | 64 if (location_bar_is_dark) { |
| 66 return starred_ ? gfx::kGoogleBlue300 : SkColorSetA(SK_ColorWHITE, 0xCC); | 65 return starred_ ? gfx::kGoogleBlue300 : SkColorSetA(SK_ColorWHITE, 0xCC); |
| 67 } | 66 } |
| 68 return starred_ ? gfx::kGoogleBlue500 : gfx::kChromeIconGrey; | 67 return starred_ ? gfx::kGoogleBlue500 : gfx::kChromeIconGrey; |
| 69 } | 68 } |
| 70 | 69 |
| 71 const gfx::VectorIcon* StarDecoration::GetMaterialVectorIcon() const { | 70 const gfx::VectorIcon* StarDecoration::GetMaterialVectorIcon() const { |
| 72 return starred_ ? &toolbar::kStarActiveIcon : &toolbar::kStarIcon; | 71 return starred_ ? &toolbar::kStarActiveIcon : &toolbar::kStarIcon; |
| 73 } | 72 } |
| OLD | NEW |