// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_TEST_BASE_CHROME_TEST_SUITE_H_ #define CHROME_TEST_BASE_CHROME_TEST_SUITE_H_ #include "base/files/file_path.h" #include "build/chromeos_buildflags.h" #include "content/public/test/content_test_suite_base.h" #if BUILDFLAG(IS_CHROMEOS_LACROS) #include "base/files/scoped_temp_dir.h" #endif // BUILDFLAG(IS_CHROMEOS_LACROS) // Test suite for unit and browser tests. Creates services needed by both. // See also ChromeUnitTestSuite for additional services created for unit tests. class ChromeTestSuite : public content::ContentTestSuiteBase { … }; #endif // CHROME_TEST_BASE_CHROME_TEST_SUITE_H_