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

Side by Side Diff: chrome/browser/ui/ash/system_tray_delegate_chromeos.h

Issue 1376663002: Remove const qualifier from function return type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_
6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 void InitializeOnAdapterReady( 74 void InitializeOnAdapterReady(
75 scoped_refptr<device::BluetoothAdapter> adapter); 75 scoped_refptr<device::BluetoothAdapter> adapter);
76 76
77 // Overridden from ash::SystemTrayDelegate: 77 // Overridden from ash::SystemTrayDelegate:
78 void Initialize() override; 78 void Initialize() override;
79 void Shutdown() override; 79 void Shutdown() override;
80 bool GetTrayVisibilityOnStartup() override; 80 bool GetTrayVisibilityOnStartup() override;
81 ash::user::LoginStatus GetUserLoginStatus() const override; 81 ash::user::LoginStatus GetUserLoginStatus() const override;
82 void ChangeProfilePicture() override; 82 void ChangeProfilePicture() override;
83 std::string GetEnterpriseDomain() const override; 83 std::string GetEnterpriseDomain() const override;
84 const base::string16 GetEnterpriseMessage() const override; 84 base::string16 GetEnterpriseMessage() const override;
85 const std::string GetSupervisedUserManager() const override; 85 std::string GetSupervisedUserManager() const override;
86 const base::string16 GetSupervisedUserManagerName() const override; 86 base::string16 GetSupervisedUserManagerName() const override;
87 const base::string16 GetSupervisedUserMessage() const override; 87 base::string16 GetSupervisedUserMessage() const override;
88 bool IsUserSupervised() const override; 88 bool IsUserSupervised() const override;
89 bool IsUserChild() const override; 89 bool IsUserChild() const override;
90 void GetSystemUpdateInfo(ash::UpdateInfo* info) const override; 90 void GetSystemUpdateInfo(ash::UpdateInfo* info) const override;
91 base::HourClockType GetHourClockType() const override; 91 base::HourClockType GetHourClockType() const override;
92 void ShowSettings() override; 92 void ShowSettings() override;
93 bool ShouldShowSettings() override; 93 bool ShouldShowSettings() override;
94 void ShowDateSettings() override; 94 void ShowDateSettings() override;
95 void ShowSetTimeDialog() override; 95 void ShowSetTimeDialog() override;
96 void ShowNetworkSettingsForGuid(const std::string& guid) override; 96 void ShowNetworkSettingsForGuid(const std::string& guid) override;
97 void ShowDisplaySettings() override; 97 void ShowDisplaySettings() override;
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 305
306 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; 306 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_;
307 307
308 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); 308 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS);
309 }; 309 };
310 310
311 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); 311 ash::SystemTrayDelegate* CreateSystemTrayDelegate();
312 312
313 } // namespace chromeos 313 } // namespace chromeos
314 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ 314 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.cc ('k') | chrome/browser/ui/ash/system_tray_delegate_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698