summaryrefslogtreecommitdiff
path: root/system_wrappers
diff options
context:
space:
mode:
authorhenrik.lundin@webrtc.org <henrik.lundin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-06-26 14:01:18 +0000
committerhenrik.lundin@webrtc.org <henrik.lundin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-06-26 14:01:18 +0000
commita622b06b46ce8584f534a876f5f052e4074f5637 (patch)
treede9ef81827b1982957aa02eeee24b54a586b92c6 /system_wrappers
parent9ff0df06bd431ddbf595620f94ae515bbdcde2da (diff)
downloadwebrtc-a622b06b46ce8584f534a876f5f052e4074f5637.tar.gz
Don't forward declare RWLockWrapper in clock.h
Include rw_lock_wrapper.h instead of forward declaring. This is to come around problems with thread annotations in some build systems. BUG=3516 R=mflodman@webrtc.org, pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17809004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6545 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'system_wrappers')
-rw-r--r--system_wrappers/interface/clock.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/system_wrappers/interface/clock.h b/system_wrappers/interface/clock.h
index c03f976d..2bb6c108 100644
--- a/system_wrappers/interface/clock.h
+++ b/system_wrappers/interface/clock.h
@@ -11,14 +11,13 @@
#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_
#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CLOCK_H_
+#include "webrtc/system_wrappers/interface/rw_lock_wrapper.h"
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
#include "webrtc/system_wrappers/interface/thread_annotations.h"
#include "webrtc/typedefs.h"
namespace webrtc {
-class RWLockWrapper;
-
// January 1970, in NTP seconds.
const uint32_t kNtpJan1970 = 2208988800UL;