summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_security_headers.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-01-25 11:39:07 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-01-25 15:20:42 +0000
commit6c91641271e536ffaa88a1dff5127e42ee99a91e (patch)
tree703d9dd49602377ddc90cbf886aad37913f2496b /chromium/net/http/http_security_headers.h
parentb145b7fafd36f0c260d6a768c81fc14e32578099 (diff)
downloadqtwebengine-chromium-6c91641271e536ffaa88a1dff5127e42ee99a91e.tar.gz
BASELINE: Update Chromium to 49.0.2623.23
Also adds missing printing sources. Change-Id: I3726b8f0c7d6751c9fc846096c571fadca7108cd Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'chromium/net/http/http_security_headers.h')
-rw-r--r--chromium/net/http/http_security_headers.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/net/http/http_security_headers.h b/chromium/net/http/http_security_headers.h
index f54df691fae..af904307870 100644
--- a/chromium/net/http/http_security_headers.h
+++ b/chromium/net/http/http_security_headers.h
@@ -5,9 +5,10 @@
#ifndef NET_HTTP_HTTP_SECURITY_HEADERS_H_
#define NET_HTTP_HTTP_SECURITY_HEADERS_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/time/time.h"
#include "base/values.h"
#include "net/base/hash_value.h"
@@ -17,7 +18,7 @@ class GURL;
namespace net {
-const int64 kMaxHSTSAgeSecs = 86400 * 365; // 1 year
+const int64_t kMaxHSTSAgeSecs = 86400 * 365; // 1 year
// Parses |value| as a Strict-Transport-Security header value. If successful,
// returns true and sets |*max_age| and |*include_subdomains|.