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

Unified Diff: webkit/api/src/WebBindings.cpp

Issue 346024: Some minor cleanup in WebBindings.{h,cpp} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 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 | « webkit/api/public/WebBindings.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/src/WebBindings.cpp
===================================================================
--- webkit/api/src/WebBindings.cpp (revision 30581)
+++ webkit/api/src/WebBindings.cpp (working copy)
@@ -255,13 +255,13 @@
return false;
// Drag events are mouse events and should have a clipboard.
- MouseEvent* me = reinterpret_cast<MouseEvent*>(event);
+ MouseEvent* me = static_cast<MouseEvent*>(event);
Clipboard* clipboard = me->clipboard();
if (!clipboard)
return false;
// And that clipboard should be accessible by WebKit policy.
- ClipboardChromium* chrome = reinterpret_cast<ClipboardChromium*>(clipboard);
+ ClipboardChromium* chrome = static_cast<ClipboardChromium*>(clipboard);
HashSet<String> accessible(chrome->types());
if (accessible.isEmpty())
return false;
« no previous file with comments | « webkit/api/public/WebBindings.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698