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

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

Issue 2616923002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Fix errors Created 3 years, 11 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: third_party/WebKit/Source/core/clipboard/DataTransferItem.h
diff --git a/third_party/WebKit/Source/core/clipboard/DataTransferItem.h b/third_party/WebKit/Source/core/clipboard/DataTransferItem.h
index 348820ac242706abdde6eb45dbd18d0f06b18a5b..4fcffa0252ae4d22a65e26b30db0be00a5a3bf35 100644
--- a/third_party/WebKit/Source/core/clipboard/DataTransferItem.h
+++ b/third_party/WebKit/Source/core/clipboard/DataTransferItem.h
@@ -41,8 +41,8 @@ namespace blink {
class Blob;
class DataObjectItem;
class DataTransfer;
+class ScriptState;
class StringCallback;
-class ExecutionContext;
class CORE_EXPORT DataTransferItem final
: public GarbageCollected<DataTransferItem>,
@@ -56,7 +56,7 @@ class CORE_EXPORT DataTransferItem final
String kind() const;
String type() const;
- void getAsString(ExecutionContext*, StringCallback*) const;
+ void getAsString(ScriptState*, StringCallback*) const;
Blob* getAsFile() const;
DataTransfer* getDataTransfer() { return m_dataTransfer.get(); }

Powered by Google App Engine
This is Rietveld 408576698