OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/toolbar/home_button.h" | 5 #include "chrome/browser/ui/views/toolbar/home_button.h" |
6 | 6 |
7 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
9 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
10 #include "chrome/browser/ui/views/settings_api_bubble_helper_views.h" | 10 #include "chrome/browser/ui/views/settings_api_bubble_helper_views.h" |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 HomeButton::HomeButton( | 139 HomeButton::HomeButton( |
140 views::ButtonListener* listener, | 140 views::ButtonListener* listener, |
141 Browser* browser) | 141 Browser* browser) |
142 : ToolbarButton(listener, NULL), | 142 : ToolbarButton(listener, NULL), |
143 browser_(browser) { | 143 browser_(browser) { |
144 } | 144 } |
145 | 145 |
146 HomeButton::~HomeButton() { | 146 HomeButton::~HomeButton() { |
147 } | 147 } |
148 | 148 |
| 149 const char* HomeButton::GetClassName() const { |
| 150 return "HomeButton"; |
| 151 } |
| 152 |
149 bool HomeButton::GetDropFormats( | 153 bool HomeButton::GetDropFormats( |
150 int* formats, | 154 int* formats, |
151 std::set<OSExchangeData::CustomFormat>* custom_formats) { | 155 std::set<OSExchangeData::CustomFormat>* custom_formats) { |
152 *formats = ui::OSExchangeData::URL; | 156 *formats = ui::OSExchangeData::URL; |
153 return true; | 157 return true; |
154 } | 158 } |
155 | 159 |
156 bool HomeButton::CanDrop(const OSExchangeData& data) { | 160 bool HomeButton::CanDrop(const OSExchangeData& data) { |
157 return data.HasURL(ui::OSExchangeData::CONVERT_FILENAMES); | 161 return data.HasURL(ui::OSExchangeData::CONVERT_FILENAMES); |
158 } | 162 } |
(...skipping 18 matching lines...) Expand all Loading... |
177 | 181 |
178 HomePageUndoBubble::ShowBubble(browser_, old_is_ntp, old_homepage, this); | 182 HomePageUndoBubble::ShowBubble(browser_, old_is_ntp, old_homepage, this); |
179 } | 183 } |
180 return ui::DragDropTypes::DRAG_NONE; | 184 return ui::DragDropTypes::DRAG_NONE; |
181 } | 185 } |
182 | 186 |
183 void HomeButton::NotifyClick(const ui::Event& event) { | 187 void HomeButton::NotifyClick(const ui::Event& event) { |
184 ToolbarButton::NotifyClick(event); | 188 ToolbarButton::NotifyClick(event); |
185 extensions::MaybeShowExtensionControlledHomeNotification(browser_); | 189 extensions::MaybeShowExtensionControlledHomeNotification(browser_); |
186 } | 190 } |
OLD | NEW |