OLD | NEW |
| (Empty) |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_TESTS_CHROME_MANIFEST_TEST_H_ | |
6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_TESTS_CHROME_MANIFEST_TEST_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "extensions/common/manifest_test.h" | |
10 | |
11 // Base class for unit tests that load manifest data from Chrome TEST_DATA_DIR. | |
12 // TODO(jamescook): Move this class and all subclasses into the extensions | |
13 // namespace. | |
14 class ChromeManifestTest : public extensions::ManifestTest { | |
15 public: | |
16 ChromeManifestTest(); | |
17 virtual ~ChromeManifestTest(); | |
18 | |
19 // ManifestTest overrides: | |
20 virtual base::FilePath GetTestDataDir() OVERRIDE; | |
21 | |
22 private: | |
23 DISALLOW_COPY_AND_ASSIGN(ChromeManifestTest); | |
24 }; | |
25 | |
26 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_TESTS_CHROME_MANIFEST_TEST_H_ | |
OLD | NEW |