OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_FRAME_READY_MODE_INTERNAL_REGISTRY_READY_MODE_STATE_H_ |
| 6 #define CHROME_FRAME_READY_MODE_INTERNAL_REGISTRY_READY_MODE_STATE_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/basictypes.h" |
| 11 #include "base/scoped_ptr.h" |
| 12 #include "chrome_frame/ready_mode/internal/ready_mode_state.h" |
| 13 |
| 14 enum ReadyModeStatus; |
| 15 |
| 16 class InstallationState; |
| 17 class Task; |
| 18 |
| 19 namespace base { |
| 20 class Time; |
| 21 }; // namespace base |
| 22 |
| 23 // Implements ReadyModeState, storing state in the Registry and delegating to an |
| 24 // instance of InstallationState to interact with the isntaller. Notifies a |
| 25 // single Observer when the state changes. |
| 26 class RegistryReadyModeState : public ReadyModeState { |
| 27 public: |
| 28 // Receives notification when the Ready Mode state changes in response to a |
| 29 // user interaction. Does not receive notification when a temporary decline of |
| 30 // Ready Mode expires. |
| 31 class Observer { |
| 32 public: |
| 33 virtual ~Observer() {} |
| 34 // Indicates that a state change has occurred. |
| 35 virtual void OnStateChange() = 0; |
| 36 }; // class Observer |
| 37 |
| 38 // Construct an instance backed by the specified key |
| 39 // (pre-existing under HKCU). The provided duration indicates how long, after |
| 40 // a temporary decline, Ready Mode re-activates. |
| 41 // |
| 42 // Takes ownership of the Observer and InstallationState instances. |
| 43 RegistryReadyModeState(const std::wstring& key_name, |
| 44 int temporary_decline_length_seconds, |
| 45 InstallationState* installation_state, |
| 46 Observer* observer); |
| 47 virtual ~RegistryReadyModeState(); |
| 48 |
| 49 // Returns the current Ready Mode status, as determined using our registry |
| 50 // state and InstallationState instance. |
| 51 ReadyModeStatus GetStatus(); |
| 52 |
| 53 // ReadyModeState implementation |
| 54 virtual void TemporarilyDeclineChromeFrame(); |
| 55 virtual void PermanentlyDeclineChromeFrame(); |
| 56 virtual void AcceptChromeFrame(); |
| 57 |
| 58 protected: |
| 59 // allow dependency replacement via derivation for tests |
| 60 virtual base::Time GetNow(); |
| 61 |
| 62 private: |
| 63 // Retrieves state from the registry. Returns true upon success. |
| 64 bool GetValue(int64* value, bool* exists); |
| 65 // Stores value in the registry. Returns true upon success. |
| 66 bool StoreValue(int64 value); |
| 67 |
| 68 int temporary_decline_length_seconds_; |
| 69 std::wstring key_name_; |
| 70 scoped_ptr<InstallationState> installation_state_; |
| 71 scoped_ptr<Observer> observer_; |
| 72 }; |
| 73 |
| 74 #endif // CHROME_FRAME_READY_MODE_INTERNAL_REGISTRY_READY_MODE_STATE_H_ |
OLD | NEW |