| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| 11 #include "app/gtk_signal.h" | |
| 12 #include "chrome/browser/status_icons/status_icon.h" | 11 #include "chrome/browser/status_icons/status_icon.h" |
| 12 #include "ui/base/gtk/gtk_signal.h" |
| 13 | 13 |
| 14 class MenuGtk; | 14 class MenuGtk; |
| 15 class SkBitmap; | 15 class SkBitmap; |
| 16 | 16 |
| 17 class StatusIconGtk : public StatusIcon { | 17 class StatusIconGtk : public StatusIcon { |
| 18 public: | 18 public: |
| 19 StatusIconGtk(); | 19 StatusIconGtk(); |
| 20 virtual ~StatusIconGtk(); | 20 virtual ~StatusIconGtk(); |
| 21 | 21 |
| 22 // Overridden from StatusIcon: | 22 // Overridden from StatusIcon: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 38 // The currently-displayed icon for the window. | 38 // The currently-displayed icon for the window. |
| 39 GtkStatusIcon* icon_; | 39 GtkStatusIcon* icon_; |
| 40 | 40 |
| 41 // The context menu for this icon (if any). | 41 // The context menu for this icon (if any). |
| 42 scoped_ptr<MenuGtk> menu_; | 42 scoped_ptr<MenuGtk> menu_; |
| 43 | 43 |
| 44 DISALLOW_COPY_AND_ASSIGN(StatusIconGtk); | 44 DISALLOW_COPY_AND_ASSIGN(StatusIconGtk); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 #endif // CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ | 47 #endif // CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ |
| OLD | NEW |