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

Unified Diff: third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.h

Issue 2582463002: Fix webkitGetEntry for non-native files. (Closed)
Patch Set: . Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.h
diff --git a/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.h b/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.h
index 449f6fff3b687cdc396dc881067c03ebcbbe69a9..82389a62d9b775cc0e0825cad2c5242cbe8d662e 100644
--- a/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.h
+++ b/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.h
@@ -20,10 +20,10 @@ class CORE_EXPORT DraggedIsolatedFileSystem {
DraggedIsolatedFileSystem() {}
virtual ~DraggedIsolatedFileSystem() {}
- using FileSystemIdPreparationCallback = void (*)(DataObject*, const String&);
+ using FileSystemIdPreparationCallback = void (*)(DataObject*);
static void init(FileSystemIdPreparationCallback);
- static void prepareForDataObject(DataObject*, const String& filesystemId);
+ static void prepareForDataObject(DataObject*);
private:
static FileSystemIdPreparationCallback s_prepareCallback;

Powered by Google App Engine
This is Rietveld 408576698