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

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

Issue 2141493002: Add missing traces for Supplement<> classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temp 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
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 class NodeTraversal; 71 class NodeTraversal;
72 template <typename Strategy> class PositionWithAffinityTemplate; 72 template <typename Strategy> class PositionWithAffinityTemplate;
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>;
82
81 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public Supplementable<LocalFrame> { 83 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public Supplementable<LocalFrame> {
82 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); 84 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame);
83 public: 85 public:
84 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi ceRegistry* = nullptr); 86 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi ceRegistry* = nullptr);
85 87
86 void init(); 88 void init();
87 void setView(FrameView*); 89 void setView(FrameView*);
88 void createView(const IntSize&, const Color&, bool, 90 void createView(const IntSize&, const Color&, bool,
89 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false, 91 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false,
90 ScrollbarMode = ScrollbarAuto, bool verticalLock = false); 92 ScrollbarMode = ScrollbarAuto, bool verticalLock = false);
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 explicit ScopedFrameBlamer(LocalFrame*); 336 explicit ScopedFrameBlamer(LocalFrame*);
335 ~ScopedFrameBlamer(); 337 ~ScopedFrameBlamer();
336 338
337 private: 339 private:
338 Member<LocalFrame> m_frame; 340 Member<LocalFrame> m_frame;
339 }; 341 };
340 342
341 } // namespace blink 343 } // namespace blink
342 344
343 #endif // LocalFrame_h 345 #endif // LocalFrame_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentParserTiming.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