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

Unified Diff: trunk/Source/core/clipboard/DataObject.h

Issue 211853002: Revert 169711 "Prevent web content from forging File entries in ..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 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
« no previous file with comments | « no previous file | trunk/Source/core/page/DragController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/Source/core/clipboard/DataObject.h
===================================================================
--- trunk/Source/core/clipboard/DataObject.h (revision 169978)
+++ trunk/Source/core/clipboard/DataObject.h (working copy)
@@ -92,10 +92,6 @@
int modifierKeyState() const { return m_modifierKeyState; }
void setModifierKeyState(int modifierKeyState) { m_modifierKeyState = modifierKeyState; }
- // The accessor should only ever be called by DragData.
- const String& filenameForNavigation() const { return m_filenameForNavigation; }
- void setFilenameForNavigation(const String& filename) { m_filenameForNavigation = filename; }
-
void trace(Visitor*);
private:
@@ -108,8 +104,6 @@
WillBeHeapVector<RefPtrWillBeMember<DataObjectItem> > m_itemList;
- String m_filenameForNavigation;
-
// State of Shift/Ctrl/Alt/Meta keys.
int m_modifierKeyState;
};
« no previous file with comments | « no previous file | trunk/Source/core/page/DragController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698