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

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

Issue 10544070: Add decoration to the language button to indicate that a third party IME is in use (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit tests Created 8 years, 6 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/system/tray/system_tray_delegate.h" 5 #include "ash/system/tray/system_tray_delegate.h"
6 6
7 namespace ash { 7 namespace ash {
8 8
9 NetworkIconInfo::NetworkIconInfo() 9 NetworkIconInfo::NetworkIconInfo()
10 : highlight(false), 10 : highlight(false),
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 23
24 DriveOperationStatus::DriveOperationStatus() 24 DriveOperationStatus::DriveOperationStatus()
25 : progress(0.0), type(OPERATION_OTHER), state(OPERATION_NOT_STARTED) { 25 : progress(0.0), type(OPERATION_OTHER), state(OPERATION_NOT_STARTED) {
26 } 26 }
27 27
28 DriveOperationStatus::~DriveOperationStatus() { 28 DriveOperationStatus::~DriveOperationStatus() {
29 } 29 }
30 30
31 IMEInfo::IMEInfo() 31 IMEInfo::IMEInfo()
32 : selected(false) { 32 : selected(false),
33 third_party(false) {
33 } 34 }
34 35
35 IMEInfo::~IMEInfo() { 36 IMEInfo::~IMEInfo() {
36 } 37 }
37 38
38 IMEPropertyInfo::IMEPropertyInfo() 39 IMEPropertyInfo::IMEPropertyInfo()
39 : selected(false) { 40 : selected(false) {
40 } 41 }
41 42
42 IMEPropertyInfo::~IMEPropertyInfo() { 43 IMEPropertyInfo::~IMEPropertyInfo() {
43 } 44 }
44 45
45 } // namespace ash 46 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/browser/chromeos/input_method/ibus_ui_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698