Home | History | Annotate | Download | only in login

Lines Matching defs:SignedSettings

27 // subclass of SignedSettings by calling one of the create
42 class SignedSettings : public base::RefCountedThreadSafe<SignedSettings>,
60 SignedSettings();
61 virtual ~SignedSettings();
65 static SignedSettings* CreateCheckWhitelistOp(
67 SignedSettings::Delegate<bool>* d);
69 static SignedSettings* CreateWhitelistOp(const std::string& email,
71 SignedSettings::Delegate<bool>* d);
75 static SignedSettings* CreateStorePropertyOp(
78 SignedSettings::Delegate<bool>* d);
80 static SignedSettings* CreateRetrievePropertyOp(
82 SignedSettings::Delegate<std::string>* d);
86 static SignedSettings* CreateStorePolicyOp(
88 SignedSettings::Delegate<bool>* d);
90 static SignedSettings* CreateRetrievePolicyOp(
91 SignedSettings::Delegate<const em::PolicyFetchResponse&>* d);
120 : public SignedSettings::Delegate<const em::PolicyFetchResponse&> {
123 explicit Relay(SignedSettings* s);
125 // Implementation of SignedSettings::Delegate
126 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
129 SignedSettings* settings_;
137 scoped_refptr<SignedSettings> polfetcher_;
138 DISALLOW_COPY_AND_ASSIGN(SignedSettings);