OLD | NEW |
| (Empty) |
1 // Copyright (c) 2010 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_BROWSER_FILE_SYSTEM_BROWSER_FILE_SYSTEM_HELPER_H_ | |
6 #define CHROME_BROWSER_FILE_SYSTEM_BROWSER_FILE_SYSTEM_HELPER_H_ | |
7 | |
8 #include "base/ref_counted.h" | |
9 #include "base/scoped_ptr.h" | |
10 #include "webkit/fileapi/file_system_context.h" | |
11 | |
12 // Helper method that returns FileSystemContext constructed for | |
13 // the browser process. | |
14 scoped_refptr<fileapi::FileSystemContext> CreateFileSystemContext( | |
15 const FilePath& profile_path, bool is_incognito); | |
16 | |
17 #endif // CHROME_BROWSER_FILE_SYSTEM_BROWSER_FILE_SYSTEM_HELPER_H_ | |
OLD | NEW |