Add dummy implementations for TrayIcon.
This commit is contained in:
parent
dd804b090a
commit
80fb79daac
9 changed files with 231 additions and 0 deletions
24
atom/browser/ui/tray_icon_win.cc
Normal file
24
atom/browser/ui/tray_icon_win.cc
Normal file
|
@ -0,0 +1,24 @@
|
|||
// 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_win.h"
|
||||
|
||||
namespace atom {
|
||||
|
||||
TrayIconWin::TrayIconWin() {
|
||||
}
|
||||
|
||||
TrayIconWin::~TrayIconWin() {
|
||||
}
|
||||
|
||||
void TrayIconWin::SetImage(const gfx::ImageSkia& image) {
|
||||
}
|
||||
|
||||
void TrayIconWin::SetPressedImage(const gfx::ImageSkia& image) {
|
||||
}
|
||||
|
||||
void TrayIconWin::SetToolTip(const std::string& tool_tip) {
|
||||
}
|
||||
|
||||
} // namespace atom
|
Loading…
Add table
Add a link
Reference in a new issue