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

Unified Diff: Source/core/css/CSSFontSelector.h

Issue 736883002: Implement <select> Popup Menu using PagePopup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/css/CSSFontSelector.h
diff --git a/Source/core/css/CSSFontSelector.h b/Source/core/css/CSSFontSelector.h
index 1b371bdd7b665c18fd691de8da9bef20e0cf0a27..791fb0c48edcfe14ee062934e166f04300234db8 100644
--- a/Source/core/css/CSSFontSelector.h
+++ b/Source/core/css/CSSFontSelector.h
@@ -41,7 +41,7 @@ class CSSFontSelectorClient;
class Document;
class FontDescription;
-class CSSFontSelector final : public FontSelector {
+class CSSFontSelector : public FontSelector {
public:
static PassRefPtrWillBeRawPtr<CSSFontSelector> create(Document* document)
{
@@ -78,9 +78,11 @@ public:
virtual void trace(Visitor*) override;
-private:
+protected:
explicit CSSFontSelector(Document*);
+private:
+
void dispatchInvalidationCallbacks();
// FIXME: Oilpan: Ideally this should just be a traced Member but that will

Powered by Google App Engine
This is Rietveld 408576698