#ifndef COMPONENTS_DRIVE_DRIVE_UPLOADER_H_
#define COMPONENTS_DRIVE_DRIVE_UPLOADER_H_
#include <stdint.h>
#include <string>
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "components/drive/service/drive_service_interface.h"
#include "google_apis/common/api_error_codes.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/device/public/mojom/wake_lock_provider.mojom.h"
class GURL;
namespace base {
class FilePath;
class TaskRunner;
}
namespace google_apis {
struct UploadRangeResponse;
}
namespace drive {
class DriveServiceInterface;
UploadCompletionCallback;
class DriveUploaderInterface { … };
class DriveUploader : public DriveUploaderInterface { … };
}
#endif