OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h" | 10 #include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 class BrowserContext; | 13 class BrowserContext; |
14 } // namespace content | 14 } // namespace content |
15 | 15 |
16 namespace fileapi { | 16 namespace fileapi { |
(...skipping 26 matching lines...) Expand all Loading... |
43 private: | 43 private: |
44 // The profile for processing Drive accesses. Should not be NULL. | 44 // The profile for processing Drive accesses. Should not be NULL. |
45 void* profile_id_; | 45 void* profile_id_; |
46 scoped_ptr<fileapi::AsyncFileUtil> async_file_util_; | 46 scoped_ptr<fileapi::AsyncFileUtil> async_file_util_; |
47 | 47 |
48 DISALLOW_COPY_AND_ASSIGN(FileSystemBackendDelegate); | 48 DISALLOW_COPY_AND_ASSIGN(FileSystemBackendDelegate); |
49 }; | 49 }; |
50 | 50 |
51 } // namespace drive | 51 } // namespace drive |
52 | 52 |
53 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 53 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
OLD | NEW |