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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_GOOGLE_APIS_DRIVE_UPLOAD_ERROR_H_
6 #define CHROME_BROWSER_GOOGLE_APIS_DRIVE_UPLOAD_ERROR_H_
8 namespace google_apis
{
10 // Represents errors on uploading a file to Drive.
11 enum DriveUploadError
{
13 DRIVE_UPLOAD_ERROR_NOT_FOUND
,
14 DRIVE_UPLOAD_ERROR_NO_SPACE
,
15 DRIVE_UPLOAD_ERROR_CONFLICT
,
16 DRIVE_UPLOAD_ERROR_ABORT
,
19 } // namespace google_apis
21 #endif // CHROME_BROWSER_GOOGLE_APIS_DRIVE_UPLOAD_ERROR_H_