| // Copyright 2013 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROME_BROWSER_UI_VIEWS_STATUS_ICONS_STATUS_TRAY_LINUX_H_ |
| #define CHROME_BROWSER_UI_VIEWS_STATUS_ICONS_STATUS_TRAY_LINUX_H_ |
| |
| #include "chrome/browser/status_icons/status_tray.h" |
| |
| class StatusTrayLinux : public StatusTray { |
| public: |
| StatusTrayLinux(); |
| |
| StatusTrayLinux(const StatusTrayLinux&) = delete; |
| StatusTrayLinux& operator=(const StatusTrayLinux&) = delete; |
| |
| ~StatusTrayLinux() override; |
| |
| protected: |
| // Overriden from StatusTray: |
| std::unique_ptr<StatusIcon> CreatePlatformStatusIcon( |
| StatusIconType type, |
| const gfx::ImageSkia& image, |
| const std::u16string& tool_tip) override; |
| }; |
| |
| #endif // CHROME_BROWSER_UI_VIEWS_STATUS_ICONS_STATUS_TRAY_LINUX_H_ |