summaryrefslogtreecommitdiffstats
path: root/content/test/unittest_test_suite.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/test/unittest_test_suite.cc')
-rw-r--r--content/test/unittest_test_suite.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/content/test/unittest_test_suite.cc b/content/test/unittest_test_suite.cc
index 790e2b8..85597d5 100644
--- a/content/test/unittest_test_suite.cc
+++ b/content/test/unittest_test_suite.cc
@@ -2,13 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/test/unittest_test_suite.h"
+#include "content/public/test/unittest_test_suite.h"
#include "base/logging.h"
#include "base/test/test_suite.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h"
+namespace content {
+
// A stubbed out WebKit platform support impl.
class UnitTestTestSuite::UnitTestWebKitPlatformSupport
: public WebKit::WebKitPlatformSupport {
@@ -41,3 +43,5 @@ UnitTestTestSuite::~UnitTestTestSuite() {
int UnitTestTestSuite::Run() {
return test_suite_->Run();
}
+
+} // namespace content