blob: 15059ab01f758907d195ddf57f3aed539aeeb9e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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.
#ifndef DEVICE_TEST_DEVICE_TEST_SUITE_H_
#define DEVICE_TEST_DEVICE_TEST_SUITE_H_
#include "content/public/test/content_test_suite_base.h"
class DeviceTestSuite : public content::ContentTestSuiteBase {
public:
DeviceTestSuite(int argc, char** argv);
virtual ~DeviceTestSuite();
protected:
virtual content::ContentClient* CreateClientForInitialization() OVERRIDE;
};
#endif // DEVICE_TEST_DEVICE_TEST_SUITE_H_
|