| 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 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_APP_MENU_ITEM_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_APP_MENU_ITEM_BROWSER_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_APP_MENU_ITEM_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_APP_MENU_ITEM_BROWSER_H_ |
| 7 | 7 |
| 8 #include "base/values.h" | 8 #include "base/values.h" |
| 9 #include "chrome/browser/ui/ash/launcher/chrome_launcher_app_menu_item.h" | 9 #include "chrome/browser/ui/ash/launcher/chrome_launcher_app_menu_item.h" |
| 10 #include "content/public/browser/notification_observer.h" | 10 #include "content/public/browser/notification_observer.h" |
| 11 #include "content/public/browser/notification_registrar.h" | 11 #include "content/public/browser/notification_registrar.h" |
| 12 | 12 |
| 13 class Browser; | 13 class Browser; |
| 14 | 14 |
| 15 // A menu item controller for a running browser. It gets created when an | 15 // A menu item controller for a running browser. It gets created when an |
| 16 // application list gets created. It's main purpose is to add the activation | 16 // application list gets created. It's main purpose is to add the activation |
| 17 // method to the |ChromeLauncherAppMenuItem| class. | 17 // method to the |ChromeLauncherAppMenuItem| class. |
| 18 class ChromeLauncherAppMenuItemBrowser : public content::NotificationObserver, | 18 class ChromeLauncherAppMenuItemBrowser : public content::NotificationObserver, |
| 19 public ChromeLauncherAppMenuItem { | 19 public ChromeLauncherAppMenuItem { |
| 20 public: | 20 public: |
| 21 ChromeLauncherAppMenuItemBrowser(const base::string16 title, | 21 ChromeLauncherAppMenuItemBrowser(const base::string16 title, |
| 22 const gfx::Image* icon, | 22 const gfx::Image* icon, |
| 23 Browser* browser, | 23 Browser* browser, |
| 24 bool has_leading_separator); | 24 bool has_leading_separator); |
| 25 virtual ~ChromeLauncherAppMenuItemBrowser(); |
| 26 |
| 25 virtual bool IsActive() const OVERRIDE; | 27 virtual bool IsActive() const OVERRIDE; |
| 26 virtual bool IsEnabled() const OVERRIDE; | 28 virtual bool IsEnabled() const OVERRIDE; |
| 27 virtual void Execute(int event_flags) OVERRIDE; | 29 virtual void Execute(int event_flags) OVERRIDE; |
| 28 | 30 |
| 29 private: | 31 private: |
| 30 // content::NotificationObserver. | 32 // content::NotificationObserver. |
| 31 virtual void Observe(int type, | 33 virtual void Observe(int type, |
| 32 const content::NotificationSource& source, | 34 const content::NotificationSource& source, |
| 33 const content::NotificationDetails& details) OVERRIDE; | 35 const content::NotificationDetails& details) OVERRIDE; |
| 34 | 36 |
| 35 // The browser which is associated which this item. | 37 // The browser which is associated which this item. |
| 36 Browser* browser_; | 38 Browser* browser_; |
| 37 | 39 |
| 38 content::NotificationRegistrar registrar_; | 40 content::NotificationRegistrar registrar_; |
| 39 | 41 |
| 40 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherAppMenuItemBrowser); | 42 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherAppMenuItemBrowser); |
| 41 }; | 43 }; |
| 42 | 44 |
| 43 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_APP_MENU_ITEM_BROWSER_
H_ | 45 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_APP_MENU_ITEM_BROWSER_
H_ |
| OLD | NEW |