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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/frame/LocalFrame.h
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h
index be53fd431366d5cd10dc6c713d2baddf9155587e..5ee580a5a0f575cf2f60cfaa5978dbad878350a2 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
@@ -31,9 +31,12 @@
#include "core/CoreExport.h"
#include "core/dom/WeakIdentifierMap.h"
#include "core/frame/Frame.h"
+#include "core/frame/FrameView.h"
#include "core/frame/LocalFrameLifecycleNotifier.h"
#include "core/frame/LocalFrameLifecycleObserver.h"
+#include "core/inspector/InstrumentingAgents.h"
#include "core/loader/FrameLoader.h"
+#include "core/loader/NavigationScheduler.h"
#include "core/page/FrameTree.h"
#include "core/paint/PaintPhase.h"
#include "platform/Supplementable.h"
@@ -56,14 +59,11 @@ class EventHandler;
class FloatSize;
class FrameConsole;
class FrameSelection;
-class FrameView;
class HTMLPlugInElement;
class InputMethodController;
class IntPoint;
class IntSize;
-class InstrumentingAgents;
class LocalDOMWindow;
-class NavigationScheduler;
class Node;
class NodeTraversal;
class Range;
@@ -110,7 +110,7 @@ public:
FrameView* view() const;
Document* document() const;
void setPagePopupOwner(Element&);
- Element* pagePopupOwner() const { return m_pagePopupOwner.get(); }
+ Element* pagePopupOwner() const;
LayoutView* contentLayoutObject() const; // Root of the layout tree for the document contained in this frame.
@@ -256,11 +256,6 @@ inline void LocalFrame::init()
m_loader.init();
}
-inline LocalDOMWindow* LocalFrame::localDOMWindow() const
-{
- return m_domWindow.get();
-}
-
inline FrameLoader& LocalFrame::loader() const
{
return m_loader;

Powered by Google App Engine
This is Rietveld 408576698