X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fbrowser%2Fextensions%2Finstall_signer.h;h=a6177c4f5cacbee127c2c5b76956c4829dbf0191;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=988f6e65db30fa81454d104e571179033cfe83bc;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/browser/extensions/install_signer.h b/src/chrome/browser/extensions/install_signer.h index 988f6e6..a6177c4 100644 --- a/src/chrome/browser/extensions/install_signer.h +++ b/src/chrome/browser/extensions/install_signer.h @@ -38,6 +38,9 @@ struct InstallSignature { // The date that the signature should expire, in YYYY-MM-DD format. std::string expire_date; + // The time this signature was obtained from the server. + base::Time timestamp; + InstallSignature(); ~InstallSignature(); @@ -109,6 +112,9 @@ class InstallSigner { scoped_ptr url_fetcher_; scoped_ptr delegate_; + // The time the request to the server was started. + base::Time request_start_time_; + DISALLOW_COPY_AND_ASSIGN(InstallSigner); };