Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Unified Diff: content/browser/renderer_host/p2p/socket_host_udp_unittest.cc

Issue 2528383002: Roll WebRTC 15242:15257 (14 commits) (Closed)
Patch Set: Applied CL 2513393003 Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | remoting/protocol/webrtc_video_renderer_adapter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
diff --git a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
index 1ac1f9d776476a3ee70cc4108f774595144fc242..66275114d6109d97c494034129286edbe455f90b 100644
--- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
+++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
@@ -39,7 +39,7 @@ class ScopedFakeClock : public rtc::ClockInterface {
ScopedFakeClock() { prev_clock_ = rtc::SetClockForTesting(this); }
~ScopedFakeClock() override { rtc::SetClockForTesting(prev_clock_); }
// ClockInterface implementation.
- uint64_t TimeNanos() const override { return time_nanos_; }
+ int64_t TimeNanos() const override { return time_nanos_; }
void SetTimeNanos(uint64_t time_nanos) { time_nanos_ = time_nanos; }
private:
« no previous file with comments | « DEPS ('k') | remoting/protocol/webrtc_video_renderer_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698