| Index: chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/file_system/file_system_apitest.cc b/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| index 0bc334da3a5cf8df4fe9f09d813f275b431ab32d..c50e3d4aded03be95e94043493f3eb79b92fb4e6 100644
|
| --- a/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| +++ b/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| @@ -9,17 +9,17 @@
|
|
|
| using extensions::FileSystemChooseFileFunction;
|
|
|
| -class FileSystemApiTest : public PlatformAppBrowserTest {
|
| +class FileSystemApiTest : public extensions::PlatformAppBrowserTest {
|
| public:
|
| virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| - PlatformAppBrowserTest::SetUpCommandLine(command_line);
|
| + extensions::PlatformAppBrowserTest::SetUpCommandLine(command_line);
|
| test_root_folder_ = test_data_dir_.AppendASCII("api_test")
|
| .AppendASCII("file_system");
|
| }
|
|
|
| virtual void TearDown() OVERRIDE {
|
| FileSystemChooseFileFunction::StopSkippingPickerForTest();
|
| - PlatformAppBrowserTest::TearDown();
|
| + extensions::PlatformAppBrowserTest::TearDown();
|
| };
|
|
|
| protected:
|
|
|