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

Unified Diff: chrome/browser/media_galleries/win/snapshot_file_details.h

Issue 14247034: Move Media Galleries FileAPI code out of webkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cr-14352004
Patch Set: Add android ifdef. Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media_galleries/win/snapshot_file_details.h
diff --git a/chrome/browser/media_galleries/win/snapshot_file_details.h b/chrome/browser/media_galleries/win/snapshot_file_details.h
index d6f00ea9b94b49b7eb5542eea0ee2ec828d26303..7c39ea3798e168387cb1580bf67bc1fe5525bdb7 100644
--- a/chrome/browser/media_galleries/win/snapshot_file_details.h
+++ b/chrome/browser/media_galleries/win/snapshot_file_details.h
@@ -8,7 +8,7 @@
#include "base/files/file_path.h"
#include "base/platform_file.h"
#include "base/win/scoped_comptr.h"
-#include "webkit/fileapi/media/mtp_device_async_delegate.h"
+#include "chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.h"
namespace chrome {
@@ -17,9 +17,9 @@ struct SnapshotRequestInfo {
SnapshotRequestInfo(
const base::FilePath& device_file_path,
const base::FilePath& snapshot_file_path,
- const fileapi::MTPDeviceAsyncDelegate::CreateSnapshotFileSuccessCallback&
+ const MTPDeviceAsyncDelegate::CreateSnapshotFileSuccessCallback&
success_callback,
- const fileapi::MTPDeviceAsyncDelegate::ErrorCallback& error_callback);
+ const MTPDeviceAsyncDelegate::ErrorCallback& error_callback);
// Device file path.
base::FilePath device_file_path;
@@ -28,11 +28,11 @@ struct SnapshotRequestInfo {
base::FilePath snapshot_file_path;
// A callback to be called when CreateSnapshotFile() succeeds.
- fileapi::MTPDeviceAsyncDelegate::CreateSnapshotFileSuccessCallback
+ MTPDeviceAsyncDelegate::CreateSnapshotFileSuccessCallback
success_callback;
// A callback to be called when CreateSnapshotFile() fails.
- fileapi::MTPDeviceAsyncDelegate::ErrorCallback error_callback;
+ MTPDeviceAsyncDelegate::ErrorCallback error_callback;
};
// Provides the details for the the creation of snapshot file.

Powered by Google App Engine
This is Rietveld 408576698