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

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

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.cpp
diff --git a/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.cpp b/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.cpp
index 07199366a1955f7391fe0836ac8640b030a7bf7e..88901aac415b09f92892363996439708c077557f 100644
--- a/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.cpp
+++ b/third_party/WebKit/Source/core/clipboard/DraggedIsolatedFileSystem.cpp
@@ -15,11 +15,9 @@ void DraggedIsolatedFileSystem::init(
s_prepareCallback = callback;
}
-void DraggedIsolatedFileSystem::prepareForDataObject(
- DataObject* dataObject,
- const String& filesystemId) {
+void DraggedIsolatedFileSystem::prepareForDataObject(DataObject* dataObject) {
ASSERT(s_prepareCallback);
- (*s_prepareCallback)(dataObject, filesystemId);
+ (*s_prepareCallback)(dataObject);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698