commit | 86c573229f20fa1564f22e6290606dc2bf44f879 | [log] [tgz] |
---|---|---|
author | pbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Thu Jul 11 09:50:05 2013 |
committer | pbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Thu Jul 11 09:50:05 2013 |
tree | 9ff5a65f1375bc5840aa5b3cb5bbb2e2529814fc | |
parent | 7b66e147c71b3beaa775d42fbb08f4d9bda75e97 [diff] |
Fix root-relative includes for pacing/. BUG=1662 R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1789004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4329 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/modules/pacing/include/mock/mock_paced_sender.h b/modules/pacing/include/mock/mock_paced_sender.h index b562c38..c8f2a18 100644 --- a/modules/pacing/include/mock/mock_paced_sender.h +++ b/modules/pacing/include/mock/mock_paced_sender.h
@@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_PACING_INCLUDE_MOCK_MOCK_PACED_SENDER_H_ #define WEBRTC_MODULES_PACING_INCLUDE_MOCK_MOCK_PACED_SENDER_H_ -#include <gmock/gmock.h> +#include "testing/gmock/include/gmock/gmock.h" #include <vector>
diff --git a/modules/pacing/paced_sender_unittest.cc b/modules/pacing/paced_sender_unittest.cc index 94a5c0b..3a574d9 100644 --- a/modules/pacing/paced_sender_unittest.cc +++ b/modules/pacing/paced_sender_unittest.cc
@@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include <gmock/gmock.h> -#include <gtest/gtest.h> +#include "testing/gmock/include/gmock/gmock.h" +#include "testing/gtest/include/gtest/gtest.h" #include "webrtc/modules/pacing/include/paced_sender.h"