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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 1851743002: Simplify Supplementables post Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component build Created 4 years, 8 months 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999-2001 Lars Knoll <knoll@kde.org> 3 * 1999-2001 Lars Knoll <knoll@kde.org>
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> 4 * 1999-2001 Antti Koivisto <koivisto@kde.org>
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> 5 * 2000-2001 Simon Hausmann <hausmann@kde.org>
6 * 2000-2001 Dirk Mueller <mueller@kde.org> 6 * 2000-2001 Dirk Mueller <mueller@kde.org>
7 * 2000 Stefan Schimanski <1Stein@gmx.de> 7 * 2000 Stefan Schimanski <1Stein@gmx.de>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 class Range; 70 class Range;
71 class LayoutView; 71 class LayoutView;
72 class TreeScope; 72 class TreeScope;
73 class ScriptController; 73 class ScriptController;
74 class SpellChecker; 74 class SpellChecker;
75 class TreeScope; 75 class TreeScope;
76 class WebFrameHostScheduler; 76 class WebFrameHostScheduler;
77 class WebFrameScheduler; 77 class WebFrameScheduler;
78 template <typename Strategy> class PositionWithAffinityTemplate; 78 template <typename Strategy> class PositionWithAffinityTemplate;
79 79
80 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public HeapSupplementable<LocalFrame>, public DisplayItemClient { 80 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public Supplementable<LocalFrame>, public DisplayItemClient {
81 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); 81 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame);
82 public: 82 public:
83 static RawPtr<LocalFrame> create(FrameLoaderClient*, FrameHost*, FrameOwner* ); 83 static RawPtr<LocalFrame> create(FrameLoaderClient*, FrameHost*, FrameOwner* );
84 84
85 void init(); 85 void init();
86 void setView(RawPtr<FrameView>); 86 void setView(RawPtr<FrameView>);
87 void createView(const IntSize&, const Color&, bool, 87 void createView(const IntSize&, const Color&, bool,
88 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false, 88 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false,
89 ScrollbarMode = ScrollbarAuto, bool verticalLock = false); 89 ScrollbarMode = ScrollbarAuto, bool verticalLock = false);
90 90
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 explicit FrameNavigationDisabler(LocalFrame&); 314 explicit FrameNavigationDisabler(LocalFrame&);
315 ~FrameNavigationDisabler(); 315 ~FrameNavigationDisabler();
316 316
317 private: 317 private:
318 Member<LocalFrame> m_frame; 318 Member<LocalFrame> m_frame;
319 }; 319 };
320 320
321 } // namespace blink 321 } // namespace blink
322 322
323 #endif // LocalFrame_h 323 #endif // LocalFrame_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp ('k') | third_party/WebKit/Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698