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

Unified Diff: Source/web/WebDragData.cpp

Issue 925913002: Fixed WebDragData's wrong dependency. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added FIXME Created 5 years, 10 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
« no previous file with comments | « no previous file | Source/web/tests/WebViewTest.cpp » ('j') | public/platform/WebDragData.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDragData.cpp
diff --git a/Source/web/WebDragData.cpp b/Source/web/WebDragData.cpp
index e2005f5250a162abb56f94fed3eaddb89d315fd3..9125cc15f8054693389a403df7bc0a6034d7155d 100644
--- a/Source/web/WebDragData.cpp
+++ b/Source/web/WebDragData.cpp
@@ -60,22 +60,6 @@ void WebDragData::assign(const WebDragData& other)
m_private = other.m_private;
}
-WebDragData::WebDragData(const PassRefPtrWillBeRawPtr<DataObject>& object)
-{
- m_private = object;
-}
-
-WebDragData& WebDragData::operator=(const PassRefPtrWillBeRawPtr<DataObject>& object)
-{
- m_private = object;
- return *this;
-}
-
-DataObject* WebDragData::getValue() const
-{
- return m_private.get();
-}
-
void WebDragData::ensureMutable()
{
ASSERT(!isNull());
« no previous file with comments | « no previous file | Source/web/tests/WebViewTest.cpp » ('j') | public/platform/WebDragData.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698