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

Side by Side Diff: third_party/WebKit/Source/modules/plugins/DOMPlugin.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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) 2008 Nokia Corporation and/or its subsidiary(-ies) 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 14 matching lines...) Expand all
25 #include "modules/plugins/DOMMimeType.h" 25 #include "modules/plugins/DOMMimeType.h"
26 #include "platform/heap/Handle.h" 26 #include "platform/heap/Handle.h"
27 #include "wtf/Forward.h" 27 #include "wtf/Forward.h"
28 #include "wtf/RefPtr.h" 28 #include "wtf/RefPtr.h"
29 29
30 namespace blink { 30 namespace blink {
31 31
32 class PluginData; 32 class PluginData;
33 33
34 class DOMPlugin final : public GarbageCollectedFinalized<DOMPlugin>, public Scri ptWrappable, public LocalFrameLifecycleObserver { 34 class DOMPlugin final : public GarbageCollectedFinalized<DOMPlugin>, public Scri ptWrappable, public LocalFrameLifecycleObserver {
35 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMPlugin); 35 USING_GARBAGE_COLLECTED_MIXIN(DOMPlugin);
36 DEFINE_WRAPPERTYPEINFO(); 36 DEFINE_WRAPPERTYPEINFO();
37 public: 37 public:
38 static DOMPlugin* create(PluginData* pluginData, LocalFrame* frame, unsigned index) 38 static DOMPlugin* create(PluginData* pluginData, LocalFrame* frame, unsigned index)
39 { 39 {
40 return new DOMPlugin(pluginData, frame, index); 40 return new DOMPlugin(pluginData, frame, index);
41 } 41 }
42 virtual ~DOMPlugin(); 42 virtual ~DOMPlugin();
43 43
44 String name() const; 44 String name() const;
45 String filename() const; 45 String filename() const;
(...skipping 11 matching lines...) Expand all
57 57
58 const PluginInfo& pluginInfo() const { return m_pluginData->plugins()[m_inde x]; } 58 const PluginInfo& pluginInfo() const { return m_pluginData->plugins()[m_inde x]; }
59 59
60 RefPtr<PluginData> m_pluginData; 60 RefPtr<PluginData> m_pluginData;
61 unsigned m_index; 61 unsigned m_index;
62 }; 62 };
63 63
64 } // namespace blink 64 } // namespace blink
65 65
66 #endif // DOMPlugin_h 66 #endif // DOMPlugin_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698