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

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

Issue 1115083002: Add the supporting code for the cast system tray integration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add reference to bug Created 5 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 namespace ash { 7 namespace ash {
8 8
9 NetworkIconInfo::NetworkIconInfo() 9 NetworkIconInfo::NetworkIconInfo()
10 : connecting(false), 10 : connecting(false),
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 return false; 216 return false;
217 } 217 }
218 218
219 bool SystemTrayDelegate::GetBluetoothDiscovering() { 219 bool SystemTrayDelegate::GetBluetoothDiscovering() {
220 return false; 220 return false;
221 } 221 }
222 222
223 void SystemTrayDelegate::ChangeProxySettings() { 223 void SystemTrayDelegate::ChangeProxySettings() {
224 } 224 }
225 225
226 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() const {
227 return nullptr;
228 }
229
226 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() 230 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
227 const { 231 const {
228 return nullptr; 232 return nullptr;
229 } 233 }
230 234
231 VolumeControlDelegate* SystemTrayDelegate::GetVolumeControlDelegate() const { 235 VolumeControlDelegate* SystemTrayDelegate::GetVolumeControlDelegate() const {
232 return nullptr; 236 return nullptr;
233 } 237 }
234 238
235 void SystemTrayDelegate::SetVolumeControlDelegate( 239 void SystemTrayDelegate::SetVolumeControlDelegate(
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 284
281 void SystemTrayDelegate::ShouldRebootOnShutdown( 285 void SystemTrayDelegate::ShouldRebootOnShutdown(
282 const RebootOnShutdownCallback& callback) { 286 const RebootOnShutdownCallback& callback) {
283 } 287 }
284 288
285 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 289 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
286 return nullptr; 290 return nullptr;
287 } 291 }
288 292
289 } // namespace ash 293 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/browser/ui/ash/cast_config_delegate_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698