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

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

Issue 2389403003: chromeos: Don't explicitly set system tray visibility during initialization (Closed)
Patch Set: unused var on windows 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
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/shelf/shelf_widget_unittest.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/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 17 matching lines...) Expand all
28 factory_reset_required(false) {} 28 factory_reset_required(false) {}
29 29
30 UpdateInfo::~UpdateInfo() {} 30 UpdateInfo::~UpdateInfo() {}
31 31
32 SystemTrayDelegate::SystemTrayDelegate() {} 32 SystemTrayDelegate::SystemTrayDelegate() {}
33 33
34 SystemTrayDelegate::~SystemTrayDelegate() {} 34 SystemTrayDelegate::~SystemTrayDelegate() {}
35 35
36 void SystemTrayDelegate::Initialize() {} 36 void SystemTrayDelegate::Initialize() {}
37 37
38 bool SystemTrayDelegate::GetTrayVisibilityOnStartup() {
39 return false;
40 }
41
42 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const { 38 LoginStatus SystemTrayDelegate::GetUserLoginStatus() const {
43 return LoginStatus::NOT_LOGGED_IN; 39 return LoginStatus::NOT_LOGGED_IN;
44 } 40 }
45 41
46 std::string SystemTrayDelegate::GetEnterpriseDomain() const { 42 std::string SystemTrayDelegate::GetEnterpriseDomain() const {
47 return std::string(); 43 return std::string();
48 } 44 }
49 45
50 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const { 46 base::string16 SystemTrayDelegate::GetEnterpriseMessage() const {
51 return base::string16(); 47 return base::string16();
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 190 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
195 return nullptr; 191 return nullptr;
196 } 192 }
197 193
198 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 194 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
199 SystemTray* tray) { 195 SystemTray* tray) {
200 return nullptr; 196 return nullptr;
201 } 197 }
202 198
203 } // namespace ash 199 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | ash/shelf/shelf_widget_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698