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

Unified Diff: Source/core/dom/StyleEngine.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/dom/StyleEngine.h
diff --git a/Source/core/dom/StyleEngine.h b/Source/core/dom/StyleEngine.h
index dced16687ecd062760bcf441b8fb934127432543..c7435e597c139e3ece5abdfdc8efa2a55934a3c9 100644
--- a/Source/core/dom/StyleEngine.h
+++ b/Source/core/dom/StyleEngine.h
@@ -28,6 +28,7 @@
#ifndef StyleEngine_h
#define StyleEngine_h
+#include "core/css/CSSFontSelector.h"
#include "core/css/CSSFontSelectorClient.h"
#include "core/css/resolver/StyleResolver.h"
#include "core/dom/Document.h"
@@ -43,7 +44,6 @@
namespace blink {
-class CSSFontSelector;
class CSSStyleSheet;
class Node;
class RuleFeatureSet;
@@ -152,6 +152,8 @@ public:
void clearMasterResolver();
CSSFontSelector* fontSelector() { return m_fontSelector.get(); }
+ void setFontSelector(PassRefPtrWillBeRawPtr<CSSFontSelector> fontSelector) { m_fontSelector = fontSelector; }
tkent 2014/12/16 05:42:39 nit: Including CSSFontSelector.h for this inline f
keishi 2014/12/16 12:21:03 Done.
+
void removeFontFaceRules(const WillBeHeapVector<RawPtrWillBeMember<const StyleRuleFontFace> >&);
void clearFontCache();
// updateGenericFontFamilySettings is used from WebSettingsImpl.

Powered by Google App Engine
This is Rietveld 408576698