| Index: sky/engine/core/dom/Document.h
|
| diff --git a/sky/engine/core/dom/Document.h b/sky/engine/core/dom/Document.h
|
| index a0f4f13dade714398e0af5a7155c38585a868851..d02dc770210010bb592cc75a691e287b1123dc80 100644
|
| --- a/sky/engine/core/dom/Document.h
|
| +++ b/sky/engine/core/dom/Document.h
|
| @@ -445,11 +445,6 @@ public:
|
| void pushCurrentScript(PassRefPtr<HTMLScriptElement>);
|
| void popCurrentScript();
|
|
|
| - enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingSheets, IgnoreLayoutWithPendingSheets };
|
| -
|
| - bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout == DidLayoutWithPendingSheets; }
|
| - bool ignoreLayoutWithPendingStylesheets() const { return m_pendingSheetLayout == IgnoreLayoutWithPendingSheets; }
|
| -
|
| // Extension for manipulating canvas drawing contexts for use in CSS
|
| void getCSSCanvasContext(const String& type, const String& name, int width, int height, RefPtr<CanvasRenderingContext2D>&, RefPtr<WebGLRenderingContext>&);
|
| HTMLCanvasElement& getCSSCanvasElement(const String& name);
|
| @@ -662,11 +657,6 @@ private:
|
|
|
| bool m_evaluateMediaQueriesOnStyleRecalc;
|
|
|
| - // If we do ignore the pending stylesheet count, then we need to add a boolean
|
| - // to track that this happened so that we can do a full repaint when the stylesheets
|
| - // do eventually load.
|
| - PendingSheetLayout m_pendingSheetLayout;
|
| -
|
| LocalFrame* m_frame;
|
| RawPtr<LocalDOMWindow> m_domWindow;
|
| // FIXME: oilpan: when we get rid of the transition types change the
|
|
|