| Index: device/test/device_test_suite.cc
|
| diff --git a/device/test/device_test_suite.cc b/device/test/device_test_suite.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..655607672ea7da0dcae7aee60e9f3cc7601bf531
|
| --- /dev/null
|
| +++ b/device/test/device_test_suite.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "device/test/device_test_suite.h"
|
| +
|
| +#include "content/public/common/content_client.h"
|
| +
|
| +DeviceTestSuite::DeviceTestSuite(int argc, char** argv)
|
| + : content::ContentTestSuiteBase(argc, argv) {
|
| +}
|
| +
|
| +DeviceTestSuite::~DeviceTestSuite() {
|
| +}
|
| +
|
| +content::ContentClient* DeviceTestSuite::CreateClientForInitialization() {
|
| + return new content::ContentClient();
|
| +}
|
|
|