Chromium Code Reviews

Unified Diff: webrtc/base/macasyncsocket.h

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: google::int32 Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/base/macasyncsocket.h
diff --git a/webrtc/base/macasyncsocket.h b/webrtc/base/macasyncsocket.h
index 735147443aad157da56ab687d931ce4a83a5cbf8..5861ee3276a7990b4552aceafe8c3c8b7d4a8031 100644
--- a/webrtc/base/macasyncsocket.h
+++ b/webrtc/base/macasyncsocket.h
@@ -49,7 +49,7 @@ class MacAsyncSocket : public AsyncSocket, public sigslot::has_slots<> {
int GetError() const override;
void SetError(int error) override;
ConnState GetState() const override;
- int EstimateMTU(uint16* mtu) override;
+ int EstimateMTU(uint16_t* mtu) override;
int GetOption(Option opt, int* value) override;
int SetOption(Option opt, int value) override;

Powered by Google App Engine