| Index: third_party/WebKit/Source/core/dom/StyleEngineContext.h
|
| diff --git a/third_party/WebKit/Source/core/dom/StyleEngineContext.h b/third_party/WebKit/Source/core/dom/StyleEngineContext.h
|
| index 79188c24f87241008731758118c102d984ecab23..bc680098ac3488edd7d75ee921e03a00fb3a6c09 100644
|
| --- a/third_party/WebKit/Source/core/dom/StyleEngineContext.h
|
| +++ b/third_party/WebKit/Source/core/dom/StyleEngineContext.h
|
| @@ -9,12 +9,12 @@
|
|
|
| namespace blink {
|
|
|
| -class StyleEngineContext {
|
| +class CORE_EXPORT StyleEngineContext {
|
| public:
|
| - StyleEngineContext() : m_addedPendingSheetBeforeBody(false) {}
|
| + StyleEngineContext();
|
| ~StyleEngineContext() {}
|
| bool addedPendingSheetBeforeBody() const { return m_addedPendingSheetBeforeBody; }
|
| - void addingPendingSheet(const Document& document) { m_addedPendingSheetBeforeBody = m_addedPendingSheetBeforeBody || !document.body(); }
|
| + void addingPendingSheet(const Document&);
|
| private:
|
| bool m_addedPendingSheetBeforeBody : 1;
|
| };
|
|
|