Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / install_signer.h
index 988f6e6..a6177c4 100644 (file)
@@ -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<net::URLFetcher> url_fetcher_;
   scoped_ptr<FetcherDelegate> delegate_;
 
+  // The time the request to the server was started.
+  base::Time request_start_time_;
+
   DISALLOW_COPY_AND_ASSIGN(InstallSigner);
 };