aboutsummaryrefslogtreecommitdiff
path: root/webrtc/base/rtccertificate.h
diff options
context:
space:
mode:
authorPeter Boström <pbos@webrtc.org>2015-10-07 12:23:21 +0200
committerPeter Boström <pbos@webrtc.org>2015-10-07 10:23:32 +0000
commit0c4e06b4c6107a1b94f764e279e4fb4161e905b0 (patch)
treeb0e40786378df3e3118c577e7890414669e536c5 /webrtc/base/rtccertificate.h
parent8d15bd6dabae829d27443e17f2f02cfbe6fa6525 (diff)
downloadwebrtc-0c4e06b4c6107a1b94f764e279e4fb4161e905b0.tar.gz
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t. BUG=webrtc:5024 R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org Review URL: https://codereview.webrtc.org/1362503003 . Cr-Commit-Position: refs/heads/master@{#10196}
Diffstat (limited to 'webrtc/base/rtccertificate.h')
-rw-r--r--webrtc/base/rtccertificate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/webrtc/base/rtccertificate.h b/webrtc/base/rtccertificate.h
index cb6835566e..d238938ae1 100644
--- a/webrtc/base/rtccertificate.h
+++ b/webrtc/base/rtccertificate.h
@@ -27,7 +27,7 @@ class RTCCertificate : public RefCountInterface {
// Takes ownership of |identity|.
static scoped_refptr<RTCCertificate> Create(scoped_ptr<SSLIdentity> identity);
- uint64 expires_timestamp_ns() const;
+ uint64_t expires_timestamp_ns() const;
bool HasExpired() const;
const SSLCertificate& ssl_certificate() const;