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

Unified Diff: webkit/glue/media_player_private_impl.cc

Issue 39297: WebKit merge 41447:41498 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: add missing tests_fixable.txt Created 11 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
Index: webkit/glue/media_player_private_impl.cc
===================================================================
--- webkit/glue/media_player_private_impl.cc (revision 11162)
+++ webkit/glue/media_player_private_impl.cc (working copy)
@@ -277,9 +277,9 @@
}
}
-void MediaPlayerPrivate::setRect(const IntRect& r) {
+void MediaPlayerPrivate::setSize(const IntSize& size) {
if (m_data) {
- AsDelegate(m_data)->SetRect(gfx::Rect(r.x(), r.y(), r.width(), r.height()));
+ AsDelegate(m_data)->SetSize(gfx::Size(size.width(), size.height()));
}
}

Powered by Google App Engine
This is Rietveld 408576698