OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_GDATA_GDATA_FILE_SYSTEM_PROXY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_PROXY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_PROXY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_PROXY_H_ |
| 7 #pragma once |
7 | 8 |
8 #include "webkit/chromeos/fileapi/remote_file_system_proxy.h" | 9 #include "webkit/chromeos/fileapi/remote_file_system_proxy.h" |
9 | 10 |
10 class Profile; | 11 class Profile; |
11 | 12 |
12 namespace gdata { | 13 namespace gdata { |
13 | 14 |
14 class GDataFileBase; | 15 class GDataFileBase; |
15 class GDataFileSystemInterface; | 16 class GDataFileSystemInterface; |
16 | 17 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 // GDataFileSystemProxy is owned by Profile, which outlives | 85 // GDataFileSystemProxy is owned by Profile, which outlives |
85 // GDataFileSystemProxy, which is owned by CrosMountPointProvider (i.e. by | 86 // GDataFileSystemProxy, which is owned by CrosMountPointProvider (i.e. by |
86 // the time Profile is removed, the file manager is already gone). Hence | 87 // the time Profile is removed, the file manager is already gone). Hence |
87 // it's safe to use this as a raw pointer. | 88 // it's safe to use this as a raw pointer. |
88 GDataFileSystemInterface* file_system_; | 89 GDataFileSystemInterface* file_system_; |
89 }; | 90 }; |
90 | 91 |
91 } // namespace chromeos | 92 } // namespace chromeos |
92 | 93 |
93 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_PROXY_H_ | 94 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILE_SYSTEM_PROXY_H_ |
OLD | NEW |