OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_HOME_BUTTON_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_HOME_BUTTON_H_ |
| 7 |
| 8 #include <set> |
| 9 |
| 10 #include "ui/views/controls/button/image_button.h" |
| 11 |
| 12 class Browser; |
| 13 |
| 14 class HomeImageButton : public views::ImageButton { |
| 15 public: |
| 16 HomeImageButton(views::ButtonListener* listener, Browser* browser); |
| 17 virtual ~HomeImageButton(); |
| 18 |
| 19 // views::ImageButton: |
| 20 virtual bool GetDropFormats( |
| 21 int* formats, |
| 22 std::set<OSExchangeData::CustomFormat>* custom_formats) OVERRIDE; |
| 23 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE; |
| 24 virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE; |
| 25 virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE; |
| 26 |
| 27 private: |
| 28 Browser* browser_; |
| 29 |
| 30 DISALLOW_COPY_AND_ASSIGN(HomeImageButton); |
| 31 }; |
| 32 |
| 33 #endif // CHROME_BROWSER_UI_VIEWS_HOME_BUTTON_H__ |
OLD | NEW |