Index: webrtc/modules/video_processing/test/video_processing_unittest.h |
diff --git a/webrtc/modules/video_processing/test/video_processing_unittest.h b/webrtc/modules/video_processing/test/video_processing_unittest.h |
index 2cb3a750faf6c48b3e4cd7fef3f969149a458e81..ffa84187e35cc5d89afbb2e1198ec6a0ff35d3e7 100644 |
--- a/webrtc/modules/video_processing/test/video_processing_unittest.h |
+++ b/webrtc/modules/video_processing/test/video_processing_unittest.h |
@@ -11,6 +11,8 @@ |
#ifndef WEBRTC_MODULES_VIDEO_PROCESSING_TEST_VIDEO_PROCESSING_UNITTEST_H_ |
#define WEBRTC_MODULES_VIDEO_PROCESSING_TEST_VIDEO_PROCESSING_UNITTEST_H_ |
+#include <string> |
+ |
#include "testing/gtest/include/gtest/gtest.h" |
#include "webrtc/modules/video_processing/include/video_processing.h" |
#include "webrtc/system_wrappers/include/trace.h" |
@@ -18,9 +20,9 @@ |
namespace webrtc { |
-class VideoProcessingModuleTest : public ::testing::Test { |
+class VideoProcessingTest : public ::testing::Test { |
protected: |
- VideoProcessingModuleTest(); |
+ VideoProcessingTest(); |
virtual void SetUp(); |
virtual void TearDown(); |
static void SetUpTestCase() { |
@@ -31,7 +33,7 @@ class VideoProcessingModuleTest : public ::testing::Test { |
static void TearDownTestCase() { |
Trace::ReturnTrace(); |
} |
- VideoProcessingModule* vpm_; |
+ VideoProcessing* vp_; |
FILE* source_file_; |
VideoFrame video_frame_; |
const int width_; |