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

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

Issue 2911303003: chromeos: Remove SystemTrayDelegate::GetIMEManagedMessage() (Closed)
Patch Set: rebase Created 3 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
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/app/generated_resources.grd » ('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 8
9 namespace ash { 9 namespace ash {
10 10
11 SystemTrayDelegate::SystemTrayDelegate() = default; 11 SystemTrayDelegate::SystemTrayDelegate() = default;
12 12
13 SystemTrayDelegate::~SystemTrayDelegate() = default; 13 SystemTrayDelegate::~SystemTrayDelegate() = default;
14 14
15 void SystemTrayDelegate::Initialize() {} 15 void SystemTrayDelegate::Initialize() {}
16 16
17 void SystemTrayDelegate::ShowUserLogin() {} 17 void SystemTrayDelegate::ShowUserLogin() {}
18 18
19 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} 19 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {}
20 20
21 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} 21 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {}
22 22
23 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} 23 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {}
24 24
25 base::string16 SystemTrayDelegate::GetIMEManagedMessage() {
26 return base::string16();
27 }
28
29 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() 25 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
30 const { 26 const {
31 return nullptr; 27 return nullptr;
32 } 28 }
33 29
34 bool SystemTrayDelegate::GetSessionStartTime( 30 bool SystemTrayDelegate::GetSessionStartTime(
35 base::TimeTicks* session_start_time) { 31 base::TimeTicks* session_start_time) {
36 return false; 32 return false;
37 } 33 }
38 34
39 bool SystemTrayDelegate::GetSessionLengthLimit( 35 bool SystemTrayDelegate::GetSessionLengthLimit(
40 base::TimeDelta* session_length_limit) { 36 base::TimeDelta* session_length_limit) {
41 return false; 37 return false;
42 } 38 }
43 39
44 void SystemTrayDelegate::ActiveUserWasChanged() {} 40 void SystemTrayDelegate::ActiveUserWasChanged() {}
45 41
46 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 42 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
47 return false; 43 return false;
48 } 44 }
49 45
50 } // namespace ash 46 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/app/generated_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698