| Index: Source/core/frame/FrameView.h
|
| diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
|
| index 9ff3829a9781ec11f422ee487b3c465f2eabc7cd..695312d437f22c9c6a58e024aaae0ddddda96911 100644
|
| --- a/Source/core/frame/FrameView.h
|
| +++ b/Source/core/frame/FrameView.h
|
| @@ -576,7 +576,7 @@
|
|
|
| int viewportWidth() const;
|
|
|
| - LayoutAnalyzer* layoutAnalyzer() { return m_analyzer.get(); }
|
| + LayoutAnalyzer& layoutAnalyzer() { return m_analyzer; }
|
|
|
| protected:
|
| // Scroll the content via the compositor.
|
| @@ -717,7 +717,6 @@
|
|
|
| ScrollingCoordinator* scrollingCoordinator();
|
|
|
| - void prepareLayoutAnalyzer();
|
| PassRefPtr<TracedValue> analyzerCounters();
|
|
|
| // LayoutObject for the viewport-defining element (see Document::viewportDefiningElement).
|
| @@ -851,7 +850,7 @@
|
|
|
| bool m_clipsRepaints;
|
|
|
| - OwnPtr<LayoutAnalyzer> m_analyzer;
|
| + LayoutAnalyzer m_analyzer;
|
| };
|
|
|
| inline void FrameView::incrementVisuallyNonEmptyCharacterCount(unsigned count)
|
|
|