| Index: apps/test/apps_test_suite_base.h
|
| diff --git a/apps/test/apps_test_suite_base.h b/apps/test/apps_test_suite_base.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8910d72146598fa3dd5259534086fa8bd318621a
|
| --- /dev/null
|
| +++ b/apps/test/apps_test_suite_base.h
|
| @@ -0,0 +1,20 @@
|
| +// Copyright 2014 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.
|
| +
|
| +#ifndef APPS_TEST_APPS_TEST_SUITE_BASE_H_
|
| +#define APPS_TEST_APPS_TEST_SUITE_BASE_H_
|
| +
|
| +#include "content/public/test/content_test_suite_base.h"
|
| +
|
| +namespace apps {
|
| +
|
| +class AppsTestSuiteBase : public content::ContentTestSuiteBase {
|
| + public:
|
| + AppsTestSuiteBase(int argc, char** argv);
|
| + virtual ~AppsTestSuiteBase();
|
| +};
|
| +
|
| +} // namespace apps
|
| +
|
| +#endif // APPS_TEST_APPS_TEST_SUITE_BASE_H_
|
|
|