Home | History | Annotate | Download | only in login

Lines Matching refs:SignedSettings

63   SignedSettings* op() const {
97 scoped_refptr<SignedSettings> op_;
101 class WhitelistOpContext : public SignedSettings::Delegate<bool>,
119 // chromeos::SignedSettings::Delegate implementation
120 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
146 op_ = SignedSettings::CreateCheckWhitelistOp(email_, this);
149 op_ = SignedSettings::CreateWhitelistOp(email_, true, this);
152 op_ = SignedSettings::CreateWhitelistOp(email_, false, this);
167 class StorePropertyOpContext : public SignedSettings::Delegate<bool>,
179 // chromeos::SignedSettings::Delegate implementation
180 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
191 op_ = SignedSettings::CreateStorePropertyOp(name_, value_, this);
202 : public SignedSettings::Delegate<std::string>,
212 // chromeos::SignedSettings::Delegate implementation
213 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
224 op_ = SignedSettings::CreateRetrievePropertyOp(name_, this);
233 class StorePolicyOpContext : public SignedSettings::Delegate<bool>,
243 // chromeos::SignedSettings::Delegate implementation
244 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
255 op_ = SignedSettings::CreateStorePolicyOp(&policy_, this);
264 : public SignedSettings::Delegate<const em::PolicyFetchResponse&>,
272 // chromeos::SignedSettings::Delegate implementation
274 SignedSettings::ReturnCode code,
284 op_ = SignedSettings::CreateRetrievePolicyOp(this);