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

Unified Diff: Source/core/layout/LayoutTheme.h

Issue 1360203002: Fix media element time display for times over an hour. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/layout/LayoutTheme.h
diff --git a/Source/core/layout/LayoutTheme.h b/Source/core/layout/LayoutTheme.h
index fde7efad80516213dd99a49d6d2ff4854467410a..be0745794c6ad67c324f1a3af014fe521c8e56b6 100644
--- a/Source/core/layout/LayoutTheme.h
+++ b/Source/core/layout/LayoutTheme.h
@@ -203,6 +203,8 @@ protected:
// A method asking if the theme is able to draw the focus ring.
virtual bool supportsFocusRing(const ComputedStyle&) const = 0;
+ static String formatChromiumMediaControlsTime(float, float, bool);
+
#if !USE(NEW_THEME)
// Methods for each appearance value.
virtual void adjustCheckboxStyle(ComputedStyle&) const;
@@ -253,6 +255,7 @@ private:
#if USE(NEW_THEME)
Theme* m_platformTheme; // The platform-specific theme.
#endif
+ friend class Internals;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698