electron/atom/browser/ui/tray_icon_gtk.cc
2014-05-30 14:37:53 +08:00

27 lines
568 B
C++

// Copyright (c) 2014 GitHub, Inc. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/ui/tray_icon_gtk.h"
namespace atom {
TrayIconGtk::TrayIconGtk() {
}
TrayIconGtk::~TrayIconGtk() {
}
void TrayIconGtk::SetImage(const gfx::ImageSkia& image) {
}
void TrayIconGtk::SetPressedImage(const gfx::ImageSkia& image) {
}
void TrayIconGtk::SetToolTip(const std::string& tool_tip) {
}
void TrayIconGtk::SetContextMenu(ui::SimpleMenuModel* menu_model) {
}
} // namespace atom