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

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

Issue 2864663002: cros: Merge SystemTrayDelegate::GetUserLoginStatus (Closed)
Patch Set: update PaletteTray to exclude ARC kiosk Created 3 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
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | ash/system/tray_accessibility.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "ash/system/tray/ime_info.h" 7 #include "ash/system/tray/ime_info.h"
8 #include "ash/system/tray/system_tray_item.h" 8 #include "ash/system/tray/system_tray_item.h"
9 9
10 namespace ash { 10 namespace ash {
11 11
12 SystemTrayDelegate::SystemTrayDelegate() {} 12 SystemTrayDelegate::SystemTrayDelegate() {}
13 13
14 SystemTrayDelegate::~SystemTrayDelegate() {} 14 SystemTrayDelegate::~SystemTrayDelegate() {}
15 15
16 void SystemTrayDelegate::Initialize() {} 16 void SystemTrayDelegate::Initialize() {}
17 17
18 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const {
19 return LoginStatus::NOT_LOGGED_IN;
20 }
21
22 void SystemTrayDelegate::ShowUserLogin() {} 18 void SystemTrayDelegate::ShowUserLogin() {}
23 19
24 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} 20 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {}
25 21
26 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} 22 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {}
27 23
28 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} 24 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {}
29 25
30 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { 26 base::string16 SystemTrayDelegate::GetIMEManagedMessage() {
31 return base::string16(); 27 return base::string16();
(...skipping 23 matching lines...) Expand all
55 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 51 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
56 return false; 52 return false;
57 } 53 }
58 54
59 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 55 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
60 SystemTray* tray) { 56 SystemTray* tray) {
61 return nullptr; 57 return nullptr;
62 } 58 }
63 59
64 } // namespace ash 60 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | ash/system/tray_accessibility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698