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

Side by Side Diff: ash/test/test_system_tray_delegate.h

Issue 2148943002: mash: Create system tray display and rotation lock items via delegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments, add rotation lock Created 4 years, 5 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/system/tray/system_tray.cc ('k') | ash/test/test_system_tray_delegate.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 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 ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ 5 #ifndef ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_
6 #define ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ 6 #define ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_
7 7
8 #include "ash/common/system/tray/default_system_tray_delegate.h" 8 #include "ash/common/system/tray/default_system_tray_delegate.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 void ClearSessionLengthLimit(); 48 void ClearSessionLengthLimit();
49 49
50 // Overridden from SystemTrayDelegate: 50 // Overridden from SystemTrayDelegate:
51 LoginStatus GetUserLoginStatus() const override; 51 LoginStatus GetUserLoginStatus() const override;
52 bool IsUserSupervised() const override; 52 bool IsUserSupervised() const override;
53 void GetSystemUpdateInfo(UpdateInfo* info) const override; 53 void GetSystemUpdateInfo(UpdateInfo* info) const override;
54 bool ShouldShowDisplayNotification() override; 54 bool ShouldShowDisplayNotification() override;
55 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; 55 bool GetSessionStartTime(base::TimeTicks* session_start_time) override;
56 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override; 56 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override;
57 void SignOut() override; 57 void SignOut() override;
58 std::unique_ptr<SystemTrayItem> CreateDisplayTrayItem(
59 SystemTray* tray) override;
60 std::unique_ptr<SystemTrayItem> CreateRotationLockTrayItem(
61 SystemTray* tray) override;
58 62
59 private: 63 private:
60 bool should_show_display_notification_; 64 bool should_show_display_notification_;
61 LoginStatus login_status_; 65 LoginStatus login_status_;
62 base::TimeDelta session_length_limit_; 66 base::TimeDelta session_length_limit_;
63 bool session_length_limit_set_; 67 bool session_length_limit_set_;
64 68
65 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate); 69 DISALLOW_COPY_AND_ASSIGN(TestSystemTrayDelegate);
66 }; 70 };
67 71
68 } // namespace test 72 } // namespace test
69 } // namespace ash 73 } // namespace ash
70 74
71 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_ 75 #endif // ASH_TEST_TEST_SYSTEM_TRAY_DELEGATE_H_
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray.cc ('k') | ash/test/test_system_tray_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698