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

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

Issue 2427913003: Use mojo volume interfaces for mash and classic ash. (Closed)
Patch Set: Split volume and system events observers; only hook up volume. Created 4 years, 2 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/common/system/tray/system_tray_delegate.h" 5 #include "ash/common/system/tray/system_tray_delegate.h"
6 6
7 #include "ash/common/system/tray/ime_info.h" 7 #include "ash/common/system/tray/ime_info.h"
8 #include "ash/common/system/tray/system_tray_item.h" 8 #include "ash/common/system/tray/system_tray_item.h"
9 9
10 namespace ash { 10 namespace ash {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 135
136 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() { 136 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() {
137 return nullptr; 137 return nullptr;
138 } 138 }
139 139
140 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() 140 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
141 const { 141 const {
142 return nullptr; 142 return nullptr;
143 } 143 }
144 144
145 VolumeControlDelegate* SystemTrayDelegate::GetVolumeControlDelegate() const {
146 return nullptr;
147 }
148
149 void SystemTrayDelegate::SetVolumeControlDelegate(
150 std::unique_ptr<VolumeControlDelegate> delegate) {}
151
152 bool SystemTrayDelegate::GetSessionStartTime( 145 bool SystemTrayDelegate::GetSessionStartTime(
153 base::TimeTicks* session_start_time) { 146 base::TimeTicks* session_start_time) {
154 return false; 147 return false;
155 } 148 }
156 149
157 bool SystemTrayDelegate::GetSessionLengthLimit( 150 bool SystemTrayDelegate::GetSessionLengthLimit(
158 base::TimeDelta* session_length_limit) { 151 base::TimeDelta* session_length_limit) {
159 return false; 152 return false;
160 } 153 }
161 154
(...skipping 25 matching lines...) Expand all
187 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 180 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
188 return nullptr; 181 return nullptr;
189 } 182 }
190 183
191 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 184 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
192 SystemTray* tray) { 185 SystemTray* tray) {
193 return nullptr; 186 return nullptr;
194 } 187 }
195 188
196 } // namespace ash 189 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/common/system/volume_control_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698