Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: chrome/browser/chromeos/gdata/drive_file_system_proxy.h

Issue 10920091: Move Drive API files to google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dependency problem Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_DRIVE_FILE_SYSTEM_PROXY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_
6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_
7 7
8 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h" 8 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h"
9 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" 9 #include "chrome/browser/google_api/gdata_errorcode.h"
10 #include "webkit/chromeos/fileapi/remote_file_system_proxy.h" 10 #include "webkit/chromeos/fileapi/remote_file_system_proxy.h"
11 11
12 namespace fileapi { 12 namespace fileapi {
13 class FileSystemURL; 13 class FileSystemURL;
14 } 14 }
15 15
16 namespace gdata { 16 namespace gdata {
17 17
18 class DriveEntryProto; 18 class DriveEntryProto;
19 class DriveFileSystemInterface; 19 class DriveFileSystemInterface;
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 // DriveFileSystem is owned by Profile, which outlives DriveFileSystemProxy, 188 // DriveFileSystem is owned by Profile, which outlives DriveFileSystemProxy,
189 // which is owned by CrosMountPointProvider (i.e. by the time Profile is 189 // which is owned by CrosMountPointProvider (i.e. by the time Profile is
190 // removed, the file manager is already gone). Hence it's safe to use this as 190 // removed, the file manager is already gone). Hence it's safe to use this as
191 // a raw pointer. 191 // a raw pointer.
192 DriveFileSystemInterface* file_system_; 192 DriveFileSystemInterface* file_system_;
193 }; 193 };
194 194
195 } // namespace chromeos 195 } // namespace chromeos
196 196
197 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ 197 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698