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

Side by Side Diff: chrome/browser/chromeos/drive/file_errors.h

Issue 96413002: Move c/b/google_apis to google_apis/drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years 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_DRIVE_FILE_ERRORS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_ERRORS_H_
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_ERRORS_H_ 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_ERRORS_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/platform_file.h" 9 #include "base/platform_file.h"
10 #include "chrome/browser/google_apis/gdata_errorcode.h" 10 #include "google_apis/drive/gdata_errorcode.h"
11 11
12 namespace drive { 12 namespace drive {
13 13
14 enum FileError { 14 enum FileError {
15 FILE_ERROR_OK = 0, 15 FILE_ERROR_OK = 0,
16 FILE_ERROR_FAILED = -1, 16 FILE_ERROR_FAILED = -1,
17 FILE_ERROR_IN_USE = -2, 17 FILE_ERROR_IN_USE = -2,
18 FILE_ERROR_EXISTS = -3, 18 FILE_ERROR_EXISTS = -3,
19 FILE_ERROR_NOT_FOUND = -4, 19 FILE_ERROR_NOT_FOUND = -4,
20 FILE_ERROR_ACCESS_DENIED = -5, 20 FILE_ERROR_ACCESS_DENIED = -5,
(...skipping 20 matching lines...) Expand all
41 41
42 // Returns a PlatformFileError that corresponds to the FileError provided. 42 // Returns a PlatformFileError that corresponds to the FileError provided.
43 base::PlatformFileError FileErrorToPlatformError(FileError error); 43 base::PlatformFileError FileErrorToPlatformError(FileError error);
44 44
45 // Converts GData error code into Drive file error code. 45 // Converts GData error code into Drive file error code.
46 FileError GDataToFileError(google_apis::GDataErrorCode status); 46 FileError GDataToFileError(google_apis::GDataErrorCode status);
47 47
48 } // namespace drive 48 } // namespace drive
49 49
50 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_ERRORS_H_ 50 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_ERRORS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/drive/file_cache_unittest.cc ('k') | chrome/browser/chromeos/drive/file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698