1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_MANAGER_JSTEST_BASE_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_MANAGER_JSTEST_BASE_H_
8 #include "base/files/file_path.h"
9 #include "chrome/test/base/in_process_browser_test.h"
11 class FileManagerJsTestBase
: public InProcessBrowserTest
{
13 explicit FileManagerJsTestBase(const base::FilePath
& base_path
);
15 // Runs all test functions in |file|, waiting for them to complete.
16 void RunTest(const base::FilePath
& file
);
19 base::FilePath base_path_
;
22 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_MANAGER_JSTEST_BASE_H_