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

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

Issue 2925683002: Revert of chromeos: Remove some IME methods from ash::SystemTrayDelegate (Closed)
Patch Set: 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/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
29 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() 33 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
30 const { 34 const {
31 return nullptr; 35 return nullptr;
32 } 36 }
33 37
34 bool SystemTrayDelegate::GetSessionStartTime( 38 bool SystemTrayDelegate::GetSessionStartTime(
35 base::TimeTicks* session_start_time) { 39 base::TimeTicks* session_start_time) {
36 return false; 40 return false;
37 } 41 }
38 42
39 bool SystemTrayDelegate::GetSessionLengthLimit( 43 bool SystemTrayDelegate::GetSessionLengthLimit(
40 base::TimeDelta* session_length_limit) { 44 base::TimeDelta* session_length_limit) {
41 return false; 45 return false;
42 } 46 }
43 47
44 void SystemTrayDelegate::ActiveUserWasChanged() {} 48 void SystemTrayDelegate::ActiveUserWasChanged() {}
45 49
46 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 50 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
47 return false; 51 return false;
48 } 52 }
49 53
50 } // namespace ash 54 } // 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