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

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

Issue 1428213004: This CL replaces std::string user_id in ash/* with AccountId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review. Created 5 years, 1 month 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/user/tray_user.cc » ('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 namespace ash { 7 namespace ash {
8 8
9 NetworkIconInfo::NetworkIconInfo() 9 NetworkIconInfo::NetworkIconInfo()
10 : connecting(false), 10 : connecting(false),
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 } 252 }
253 253
254 void SystemTrayDelegate::ActiveUserWasChanged() { 254 void SystemTrayDelegate::ActiveUserWasChanged() {
255 } 255 }
256 256
257 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 257 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
258 return false; 258 return false;
259 } 259 }
260 260
261 tray::UserAccountsDelegate* SystemTrayDelegate::GetUserAccountsDelegate( 261 tray::UserAccountsDelegate* SystemTrayDelegate::GetUserAccountsDelegate(
262 const std::string& user_id) { 262 const AccountId& account_id) {
263 return nullptr; 263 return nullptr;
264 } 264 }
265 265
266 void SystemTrayDelegate::AddCustodianInfoTrayObserver( 266 void SystemTrayDelegate::AddCustodianInfoTrayObserver(
267 CustodianInfoTrayObserver* observer) { 267 CustodianInfoTrayObserver* observer) {
268 } 268 }
269 269
270 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( 270 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver(
271 CustodianInfoTrayObserver* observer) { 271 CustodianInfoTrayObserver* observer) {
272 } 272 }
273 273
274 void SystemTrayDelegate::AddShutdownPolicyObserver( 274 void SystemTrayDelegate::AddShutdownPolicyObserver(
275 ShutdownPolicyObserver* observer) { 275 ShutdownPolicyObserver* observer) {
276 } 276 }
277 277
278 void SystemTrayDelegate::RemoveShutdownPolicyObserver( 278 void SystemTrayDelegate::RemoveShutdownPolicyObserver(
279 ShutdownPolicyObserver* observer) { 279 ShutdownPolicyObserver* observer) {
280 } 280 }
281 281
282 void SystemTrayDelegate::ShouldRebootOnShutdown( 282 void SystemTrayDelegate::ShouldRebootOnShutdown(
283 const RebootOnShutdownCallback& callback) { 283 const RebootOnShutdownCallback& callback) {
284 } 284 }
285 285
286 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 286 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
287 return nullptr; 287 return nullptr;
288 } 288 }
289 289
290 } // namespace ash 290 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | ash/system/user/tray_user.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698