OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/ui/views/status_icons/status_tray_chromeos.h" | |
6 | |
7 #include "chrome/browser/status_icons/status_tray.h" | |
8 #include "chrome/browser/ui/views/status_icons/status_icon_chromeos.h" | |
9 | |
10 StatusTray* StatusTray::Create() { | |
11 return new StatusTrayChromeOS(); | |
12 } | |
13 | |
14 StatusTrayChromeOS::StatusTrayChromeOS() { | |
15 } | |
16 | |
17 StatusTrayChromeOS::~StatusTrayChromeOS() { | |
18 } | |
19 | |
20 StatusIcon* StatusTrayChromeOS::CreatePlatformStatusIcon() { | |
21 return new StatusIconChromeOS(); | |
22 } | |
OLD | NEW |