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

Side by Side Diff: chromeos/dbus/fake_update_engine_client.h

Issue 2060623002: Implementation of Device End of Life Notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modify browsertest Created 4 years, 6 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 (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 #ifndef CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_ 6 #define CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <string> 9 #include <string>
10 10
(...skipping 17 matching lines...) Expand all
28 bool HasObserver(const Observer* observer) const override; 28 bool HasObserver(const Observer* observer) const override;
29 void RequestUpdateCheck(const UpdateCheckCallback& callback) override; 29 void RequestUpdateCheck(const UpdateCheckCallback& callback) override;
30 void RebootAfterUpdate() override; 30 void RebootAfterUpdate() override;
31 void Rollback() override; 31 void Rollback() override;
32 void CanRollbackCheck(const RollbackCheckCallback& callback) override; 32 void CanRollbackCheck(const RollbackCheckCallback& callback) override;
33 Status GetLastStatus() override; 33 Status GetLastStatus() override;
34 void SetChannel(const std::string& target_channel, 34 void SetChannel(const std::string& target_channel,
35 bool is_powerwash_allowed) override; 35 bool is_powerwash_allowed) override;
36 void GetChannel(bool get_current_channel, 36 void GetChannel(bool get_current_channel,
37 const GetChannelCallback& callback) override; 37 const GetChannelCallback& callback) override;
38 void GetEolStatus(const GetEolStatusCallback& callback) override;
38 39
39 // Pushes UpdateEngineClient::Status in the queue to test changing status. 40 // Pushes UpdateEngineClient::Status in the queue to test changing status.
40 // GetLastStatus() returns the status set by this method in FIFO order. 41 // GetLastStatus() returns the status set by this method in FIFO order.
41 // See set_default_status(). 42 // See set_default_status().
42 void PushLastStatus(const UpdateEngineClient::Status& status) { 43 void PushLastStatus(const UpdateEngineClient::Status& status) {
43 status_queue_.push(status); 44 status_queue_.push(status);
44 } 45 }
45 46
46 // Sends status change notification. 47 // Sends status change notification.
47 void NotifyObserversThatStatusChanged( 48 void NotifyObserversThatStatusChanged(
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 bool can_rollback_stub_result_; 84 bool can_rollback_stub_result_;
84 int reboot_after_update_call_count_; 85 int reboot_after_update_call_count_;
85 int request_update_check_call_count_; 86 int request_update_check_call_count_;
86 int rollback_call_count_; 87 int rollback_call_count_;
87 int can_rollback_call_count_; 88 int can_rollback_call_count_;
88 }; 89 };
89 90
90 } // namespace chromeos 91 } // namespace chromeos
91 92
92 #endif // CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_ 93 #endif // CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698