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

Unified Diff: Source/core/clipboard/Clipboard.h

Issue 339533002: setData() of DataTransfer has a void return type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed unnecessary argument. Created 6 years, 6 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: Source/core/clipboard/Clipboard.h
diff --git a/Source/core/clipboard/Clipboard.h b/Source/core/clipboard/Clipboard.h
index 66ed7630b8b70a0d89a2b04987777530e9fc0b9f..714dcc03cdd39f0c1434a2ac71ee030180d1891e 100644
--- a/Source/core/clipboard/Clipboard.h
+++ b/Source/core/clipboard/Clipboard.h
@@ -71,7 +71,7 @@ public:
void clearData(const String& type = String());
String getData(const String& type) const;
- bool setData(const String& type, const String& data);
+ void setData(const String& type, const String& data);
// extensions beyond IE's API
Vector<String> types() const;
« no previous file with comments | « LayoutTests/editing/pasteboard/set_data_typeof_return-expected.txt ('k') | Source/core/clipboard/Clipboard.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698