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

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

Issue 2143843002: Make Frame subclasses final. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/RemoteFrame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 class PluginData; 73 class PluginData;
74 class Range; 74 class Range;
75 class ScriptController; 75 class ScriptController;
76 class ServiceRegistry; 76 class ServiceRegistry;
77 class SpellChecker; 77 class SpellChecker;
78 class WebFrameHostScheduler; 78 class WebFrameHostScheduler;
79 class WebFrameScheduler; 79 class WebFrameScheduler;
80 80
81 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<LocalFrame>; 81 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<LocalFrame>;
82 82
83 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public Supplementable<LocalFrame> { 83 class CORE_EXPORT LocalFrame final : public Frame, public LocalFrameLifecycleNot ifier, public Supplementable<LocalFrame> {
84 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); 84 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame);
85 public: 85 public:
86 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi ceRegistry* = nullptr); 86 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi ceRegistry* = nullptr);
87 87
88 void init(); 88 void init();
89 void setView(FrameView*); 89 void setView(FrameView*);
90 void createView(const IntSize&, const Color&, bool, 90 void createView(const IntSize&, const Color&, bool,
91 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false, 91 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false,
92 ScrollbarMode = ScrollbarAuto, bool verticalLock = false); 92 ScrollbarMode = ScrollbarAuto, bool verticalLock = false);
93 93
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 explicit ScopedFrameBlamer(LocalFrame*); 334 explicit ScopedFrameBlamer(LocalFrame*);
335 ~ScopedFrameBlamer(); 335 ~ScopedFrameBlamer();
336 336
337 private: 337 private:
338 Member<LocalFrame> m_frame; 338 Member<LocalFrame> m_frame;
339 }; 339 };
340 340
341 } // namespace blink 341 } // namespace blink
342 342
343 #endif // LocalFrame_h 343 #endif // LocalFrame_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/RemoteFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698