HomeSort by relevance Sort by last modified time
    Searched refs:InstallSignature (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/extensions/
install_signer.h 30 struct InstallSignature {
49 InstallSignature();
50 ~InstallSignature();
55 static scoped_ptr<InstallSignature> FromValue(
63 typedef base::Callback<void(scoped_ptr<InstallSignature>)> SignatureCallback;
67 // check the set of ids in the InstallSignature passed to their callback, as
82 // Returns whether the signature in InstallSignature is properly signed with a
84 static bool VerifySignature(const InstallSignature& signature);
112 // which will need to be persisted in the eventual InstallSignature we get.
install_verifier.h 32 struct InstallSignature;
55 // Returns the timestamp of our InstallSignature, if we have one.
140 void SignatureCallback(scoped_ptr<InstallSignature> signature);
152 scoped_ptr<InstallSignature> signature_;
install_signer.cc 155 InstallSignature::InstallSignature() {
157 InstallSignature::~InstallSignature() {
160 void InstallSignature::ToValue(base::DictionaryValue* value) const {
178 scoped_ptr<InstallSignature> InstallSignature::FromValue(
181 scoped_ptr<InstallSignature> result(new InstallSignature);
235 bool InstallSigner::VerifySignature(const InstallSignature& signature)
    [all...]
install_verifier.cc 210 scoped_ptr<InstallSignature> signature_from_prefs =
211 InstallSignature::FromValue(*pref);
578 scoped_ptr<InstallSignature> rehydrated =
579 InstallSignature::FromValue(pref);
607 scoped_ptr<InstallSignature> signature) {

Completed in 62 milliseconds