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

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

Issue 2888983003: chromeos: Remove ash::SystemTrayDelegate::CreateTrayRotationLock (Closed)
Patch Set: 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
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"
9 8
10 namespace ash { 9 namespace ash {
11 10
12 SystemTrayDelegate::SystemTrayDelegate() {} 11 SystemTrayDelegate::SystemTrayDelegate() = default;
13 12
14 SystemTrayDelegate::~SystemTrayDelegate() {} 13 SystemTrayDelegate::~SystemTrayDelegate() = default;
15 14
16 void SystemTrayDelegate::Initialize() {} 15 void SystemTrayDelegate::Initialize() {}
17 16
18 void SystemTrayDelegate::ShowUserLogin() {} 17 void SystemTrayDelegate::ShowUserLogin() {}
19 18
20 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} 19 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {}
21 20
22 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} 21 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {}
23 22
24 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} 23 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {}
(...skipping 20 matching lines...) Expand all
45 base::TimeDelta* session_length_limit) { 44 base::TimeDelta* session_length_limit) {
46 return false; 45 return false;
47 } 46 }
48 47
49 void SystemTrayDelegate::ActiveUserWasChanged() {} 48 void SystemTrayDelegate::ActiveUserWasChanged() {}
50 49
51 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 50 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
52 return false; 51 return false;
53 } 52 }
54 53
55 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
56 SystemTray* tray) {
57 return nullptr;
58 }
59
60 } // namespace ash 54 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/browser/ui/ash/system_tray_delegate_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698