| 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 #include "chrome/browser/ui/views/location_bar/star_view.h" | 5 #include "chrome/browser/ui/views/location_bar/star_view.h" |
| 6 | 6 |
| 7 #include "base/metrics/histogram_macros.h" | 7 #include "base/metrics/histogram_macros.h" |
| 8 #include "chrome/app/chrome_command_ids.h" | 8 #include "chrome/app/chrome_command_ids.h" |
| 9 #include "chrome/browser/bookmarks/bookmark_stats.h" | 9 #include "chrome/browser/bookmarks/bookmark_stats.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/ui/browser_commands.h" | 11 #include "chrome/browser/ui/browser_commands.h" |
| 12 #include "chrome/browser/ui/view_ids.h" | 12 #include "chrome/browser/ui/view_ids.h" |
| 13 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h" | 13 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h" |
| 14 #include "chrome/grit/generated_resources.h" | 14 #include "chrome/grit/generated_resources.h" |
| 15 #include "components/strings/grit/components_strings.h" | 15 #include "components/strings/grit/components_strings.h" |
| 16 #include "components/toolbar/vector_icons.h" | 16 #include "components/toolbar/vector_icons.h" |
| 17 #include "ui/base/l10n/l10n_util.h" | 17 #include "ui/base/l10n/l10n_util.h" |
| 18 #include "ui/gfx/vector_icons_public.h" | |
| 19 | 18 |
| 20 StarView::StarView(CommandUpdater* command_updater, Browser* browser) | 19 StarView::StarView(CommandUpdater* command_updater, Browser* browser) |
| 21 : BubbleIconView(command_updater, IDC_BOOKMARK_PAGE), browser_(browser) { | 20 : BubbleIconView(command_updater, IDC_BOOKMARK_PAGE), browser_(browser) { |
| 22 set_id(VIEW_ID_STAR_BUTTON); | 21 set_id(VIEW_ID_STAR_BUTTON); |
| 23 SetToggled(false); | 22 SetToggled(false); |
| 24 } | 23 } |
| 25 | 24 |
| 26 StarView::~StarView() {} | 25 StarView::~StarView() {} |
| 27 | 26 |
| 28 void StarView::SetToggled(bool on) { | 27 void StarView::SetToggled(bool on) { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 59 } | 58 } |
| 60 } | 59 } |
| 61 | 60 |
| 62 views::BubbleDialogDelegateView* StarView::GetBubble() const { | 61 views::BubbleDialogDelegateView* StarView::GetBubble() const { |
| 63 return BookmarkBubbleView::bookmark_bubble(); | 62 return BookmarkBubbleView::bookmark_bubble(); |
| 64 } | 63 } |
| 65 | 64 |
| 66 const gfx::VectorIcon& StarView::GetVectorIcon() const { | 65 const gfx::VectorIcon& StarView::GetVectorIcon() const { |
| 67 return active() ? toolbar::kStarActiveIcon : toolbar::kStarIcon; | 66 return active() ? toolbar::kStarActiveIcon : toolbar::kStarIcon; |
| 68 } | 67 } |
| OLD | NEW |