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

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

Issue 2923083002: chromeos: Convert system tray session length limit to mojo (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') | ash/system/tray/system_tray_notifier.h » ('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
(...skipping 13 matching lines...) Expand all
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 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() 29 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
30 const { 30 const {
31 return nullptr; 31 return nullptr;
32 } 32 }
33 33
34 bool SystemTrayDelegate::GetSessionStartTime(
35 base::TimeTicks* session_start_time) {
36 return false;
37 }
38
39 bool SystemTrayDelegate::GetSessionLengthLimit(
40 base::TimeDelta* session_length_limit) {
41 return false;
42 }
43
44 void SystemTrayDelegate::ActiveUserWasChanged() {} 34 void SystemTrayDelegate::ActiveUserWasChanged() {}
45 35
46 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 36 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
47 return false; 37 return false;
48 } 38 }
49 39
50 } // namespace ash 40 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | ash/system/tray/system_tray_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698