1 // Copyright 2013 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_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_WRITE_FROM_FILE_OPERATION_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_WRITE_FROM_FILE_OPERATION_H_
8 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
10 namespace extensions
{
11 namespace image_writer
{
13 // Encapsulates a write of an image from a local file.
14 class WriteFromFileOperation
: public Operation
{
16 WriteFromFileOperation(base::WeakPtr
<OperationManager
> manager
,
17 const ExtensionId
& extension_id
,
18 const base::FilePath
& user_file_path
,
19 const std::string
& storage_unit_id
);
20 void StartImpl() override
;
23 ~WriteFromFileOperation() override
;
26 } // namespace image_writer
27 } // namespace extensions
29 #endif // CHROME_BROWSER_EXTENSIONS_API_IMAGE_WRITER_PRIVATE_WRITE_FROM_FILE_OPERATION_H_