Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: ash/system/tray/system_tray_delegate.cc

Issue 10214013: Created uber tray UI for monitoring ongoing WebDrive sync operations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 "ash/system/tray/system_tray_delegate.h"
6
7 namespace ash {
8
9 NetworkIconInfo::NetworkIconInfo()
10 : highlight(false),
11 tray_icon_visible(true) {
12 }
13
14 NetworkIconInfo::~NetworkIconInfo() {
15 }
16
17 BluetoothDeviceInfo::BluetoothDeviceInfo()
18 : connected(false) {
19 }
20
21 BluetoothDeviceInfo::~BluetoothDeviceInfo() {
22 }
23
24 DriveOperationStatus::DriveOperationStatus()
25 : progress(0.0), type(OPERATION_OTHER), state(OPERATION_NOT_STARTED) {
26 }
27
28 DriveOperationStatus::~DriveOperationStatus() {
29 }
30
31 IMEInfo::IMEInfo()
32 : selected(false) {
33 }
34
35 IMEInfo::~IMEInfo() {
36 }
37
38 IMEPropertyInfo::IMEPropertyInfo()
39 : selected(false) {
40 }
41
42 IMEPropertyInfo::~IMEPropertyInfo() {
43 }
44
45 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/browser/chromeos/gdata/gdata_operation_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698