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

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

Issue 2891263002: chromeos: Remove some IME methods from ash::SystemTrayDelegate (Closed)
Patch Set: rebase 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') | chrome/browser/chromeos/BUILD.gn » ('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() { 25 base::string16 SystemTrayDelegate::GetIMEManagedMessage() {
26 return base::string16(); 26 return base::string16();
27 } 27 }
28 28
29 void SystemTrayDelegate::SwitchIME(const std::string& ime_id) {}
30
31 void SystemTrayDelegate::ActivateIMEProperty(const std::string& key) {}
32
33 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() 29 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
34 const { 30 const {
35 return nullptr; 31 return nullptr;
36 } 32 }
37 33
38 bool SystemTrayDelegate::GetSessionStartTime( 34 bool SystemTrayDelegate::GetSessionStartTime(
39 base::TimeTicks* session_start_time) { 35 base::TimeTicks* session_start_time) {
40 return false; 36 return false;
41 } 37 }
42 38
43 bool SystemTrayDelegate::GetSessionLengthLimit( 39 bool SystemTrayDelegate::GetSessionLengthLimit(
44 base::TimeDelta* session_length_limit) { 40 base::TimeDelta* session_length_limit) {
45 return false; 41 return false;
46 } 42 }
47 43
48 void SystemTrayDelegate::ActiveUserWasChanged() {} 44 void SystemTrayDelegate::ActiveUserWasChanged() {}
49 45
50 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 46 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
51 return false; 47 return false;
52 } 48 }
53 49
54 } // namespace ash 50 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/browser/chromeos/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698