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

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

Issue 2525563003: mash: Change CastConfigDelegate to a mojoified CastConfigClient. (Closed)
Patch Set: move dep to chromeos section Created 4 years 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/common/system/tray/system_tray_delegate.h ('k') | ash/common/wm_shell.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/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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 } 116 }
117 117
118 bool SystemTrayDelegate::GetBluetoothEnabled() { 118 bool SystemTrayDelegate::GetBluetoothEnabled() {
119 return false; 119 return false;
120 } 120 }
121 121
122 bool SystemTrayDelegate::GetBluetoothDiscovering() { 122 bool SystemTrayDelegate::GetBluetoothDiscovering() {
123 return false; 123 return false;
124 } 124 }
125 125
126 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() {
127 return nullptr;
128 }
129
130 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() 126 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
131 const { 127 const {
132 return nullptr; 128 return nullptr;
133 } 129 }
134 130
135 bool SystemTrayDelegate::GetSessionStartTime( 131 bool SystemTrayDelegate::GetSessionStartTime(
136 base::TimeTicks* session_start_time) { 132 base::TimeTicks* session_start_time) {
137 return false; 133 return false;
138 } 134 }
139 135
(...skipping 17 matching lines...) Expand all
157 153
158 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( 154 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver(
159 CustodianInfoTrayObserver* observer) {} 155 CustodianInfoTrayObserver* observer) {}
160 156
161 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 157 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
162 SystemTray* tray) { 158 SystemTray* tray) {
163 return nullptr; 159 return nullptr;
164 } 160 }
165 161
166 } // namespace ash 162 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/common/wm_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698