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

Unified Diff: third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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: third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp b/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
index ad829bc1d99588bb8d620d421d18e290daaddfbe..01a17a70aaeb0f2ade6890290a9ecef6b2f3bc3b 100644
--- a/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
+++ b/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
@@ -103,6 +103,21 @@ CSSDefaultStyleSheets::CSSDefaultStyleSheets()
m_defaultQuirksStyle->addRulesFromSheet(quirksStyleSheet(), screenEval());
}
+RuleSet* CSSDefaultStyleSheets::defaultStyle() const
+{
+ return m_defaultStyle.get();
+}
+
+RuleSet* CSSDefaultStyleSheets::defaultQuirksStyle() const
+{
+ return m_defaultQuirksStyle.get();
+}
+
+RuleSet* CSSDefaultStyleSheets::defaultPrintStyle() const
+{
+ return m_defaultPrintStyle.get();
+}
+
RuleSet* CSSDefaultStyleSheets::defaultViewSourceStyle()
{
if (!m_defaultViewSourceStyle) {
@@ -125,6 +140,36 @@ RuleSet* CSSDefaultStyleSheets::defaultXHTMLMobileProfileStyle()
return m_defaultXHTMLMobileProfileStyle.get();
}
+StyleSheetContents* CSSDefaultStyleSheets::defaultStyleSheet() const
+{
+ return m_defaultStyleSheet.get();
+}
+
+StyleSheetContents* CSSDefaultStyleSheets::quirksStyleSheet() const
+{
+ return m_quirksStyleSheet.get();
+}
+
+StyleSheetContents* CSSDefaultStyleSheets::svgStyleSheet() const
+{
+ return m_svgStyleSheet.get();
+}
+
+StyleSheetContents* CSSDefaultStyleSheets::mathmlStyleSheet() const
+{
+ return m_mathmlStyleSheet.get();
+}
+
+StyleSheetContents* CSSDefaultStyleSheets::mediaControlsStyleSheet() const
+{
+ return m_mediaControlsStyleSheet.get();
+}
+
+StyleSheetContents* CSSDefaultStyleSheets::fullscreenStyleSheet() const
+{
+ return m_fullscreenStyleSheet.get();
+}
+
RuleSet* CSSDefaultStyleSheets::defaultMobileViewportStyle()
{
if (!m_defaultMobileViewportStyle) {
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.h ('k') | third_party/WebKit/Source/core/css/CSSFontFaceSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698