| OLD | NEW |
| 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 20 matching lines...) Expand all Loading... |
| 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 void GetEolStatus(const GetEolStatusCallback& callback) override; |
| 39 void SetUpdateOverCellularPermission(bool allowed, | 39 void SetUpdateOverCellularPermission(bool allowed, |
| 40 const base::Closure& callback) override; | 40 const base::Closure& callback) override; |
| 41 | 41 void SetUpdateOverCellularTarget( |
| 42 const std::string& target_version, |
| 43 int64_t target_size, |
| 44 const SetUpdateOverCellularTargetCallback& callback) override; |
| 42 // Pushes UpdateEngineClient::Status in the queue to test changing status. | 45 // Pushes UpdateEngineClient::Status in the queue to test changing status. |
| 43 // GetLastStatus() returns the status set by this method in FIFO order. | 46 // GetLastStatus() returns the status set by this method in FIFO order. |
| 44 // See set_default_status(). | 47 // See set_default_status(). |
| 45 void PushLastStatus(const UpdateEngineClient::Status& status) { | 48 void PushLastStatus(const UpdateEngineClient::Status& status) { |
| 46 status_queue_.push(status); | 49 status_queue_.push(status); |
| 47 } | 50 } |
| 48 | 51 |
| 49 // Sends status change notification. | 52 // Sends status change notification. |
| 50 void NotifyObserversThatStatusChanged( | 53 void NotifyObserversThatStatusChanged( |
| 51 const UpdateEngineClient::Status& status); | 54 const UpdateEngineClient::Status& status); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 bool can_rollback_stub_result_; | 89 bool can_rollback_stub_result_; |
| 87 int reboot_after_update_call_count_; | 90 int reboot_after_update_call_count_; |
| 88 int request_update_check_call_count_; | 91 int request_update_check_call_count_; |
| 89 int rollback_call_count_; | 92 int rollback_call_count_; |
| 90 int can_rollback_call_count_; | 93 int can_rollback_call_count_; |
| 91 }; | 94 }; |
| 92 | 95 |
| 93 } // namespace chromeos | 96 } // namespace chromeos |
| 94 | 97 |
| 95 #endif // CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_ | 98 #endif // CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_ |
| OLD | NEW |