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

Unified Diff: Source/core/rendering/RenderMediaControlsChromium.h

Issue 21430003: Implement interfaces in PaintInfo and make it a class. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@getterPaintInfo01
Patch Set: Second try Created 7 years, 5 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/rendering/RenderMediaControlsChromium.h
diff --git a/Source/core/rendering/RenderMediaControlsChromium.h b/Source/core/rendering/RenderMediaControlsChromium.h
index 9e9e81085b68aa7f66117cb688f7890d1e31e3cc..2185d7d8afdc35f8fa3b265c448e0fab21d3a609 100644
--- a/Source/core/rendering/RenderMediaControlsChromium.h
+++ b/Source/core/rendering/RenderMediaControlsChromium.h
@@ -32,7 +32,7 @@
namespace WebCore {
-struct PaintInfo;
+class PaintInfo;
class HTMLMediaElement;
class IntRect;
@@ -40,7 +40,7 @@ class RenderObject;
class RenderMediaControlsChromium {
public:
- static bool paintMediaControlsPart(MediaControlElementType, RenderObject*, const PaintInfo&, const IntRect&);
+ static bool paintMediaControlsPart(MediaControlElementType, RenderObject*, PaintInfo&, const IntRect&);
static void adjustMediaSliderThumbSize(RenderStyle*);
static String formatMediaControlsTime(float time);
static String formatMediaControlsCurrentTime(float currentTime, float duration);

Powered by Google App Engine
This is Rietveld 408576698