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

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

Issue 1780603002: blink: Rename bindings/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-bindings: rebase Created 4 years, 9 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 2e1da11a23de5f7a9b9609be5417131b34d5669f..624ad634a15bdf7896fa28adb149a3aac4cd6906 100644
--- a/third_party/WebKit/Source/core/clipboard/DataTransferItem.h
+++ b/third_party/WebKit/Source/core/clipboard/DataTransferItem.h
@@ -58,8 +58,8 @@ public:
void getAsString(ExecutionContext*, StringCallback*) const;
Blob* getAsFile() const;
- DataTransfer* dataTransfer() { return m_dataTransfer.get(); }
- DataObjectItem* dataObjectItem() { return m_item.get(); }
+ DataTransfer* getDataTransfer() { return m_dataTransfer.get(); }
+ DataObjectItem* getDataObjectItem() { return m_item.get(); }
DECLARE_TRACE();

Powered by Google App Engine
This is Rietveld 408576698