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

Side by Side Diff: chrome/browser/ui/views/home_button.h

Issue 11742003: Implemented drop hander for the Home toolbar button that accepts (only) links (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/views/home_button.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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__
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/views/home_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698