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

Side by Side Diff: Source/core/plugins/DOMPlugin.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/plugins/DOMMimeTypeArray.cpp ('k') | Source/core/plugins/DOMPluginArray.cpp » ('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) 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 Lesser General Public 5 * modify it under the terms of the GNU Lesser 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 11 matching lines...) Expand all
22 #include "platform/plugins/PluginData.h" 22 #include "platform/plugins/PluginData.h"
23 #include "wtf/text/AtomicString.h" 23 #include "wtf/text/AtomicString.h"
24 24
25 namespace blink { 25 namespace blink {
26 26
27 DOMPlugin::DOMPlugin(PluginData* pluginData, LocalFrame* frame, unsigned index) 27 DOMPlugin::DOMPlugin(PluginData* pluginData, LocalFrame* frame, unsigned index)
28 : FrameDestructionObserver(frame) 28 : FrameDestructionObserver(frame)
29 , m_pluginData(pluginData) 29 , m_pluginData(pluginData)
30 , m_index(index) 30 , m_index(index)
31 { 31 {
32 ScriptWrappable::init(this);
33 } 32 }
34 33
35 DOMPlugin::~DOMPlugin() 34 DOMPlugin::~DOMPlugin()
36 { 35 {
37 } 36 }
38 37
39 String DOMPlugin::name() const 38 String DOMPlugin::name() const
40 { 39 {
41 return pluginInfo().name; 40 return pluginInfo().name;
42 } 41 }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 PassRefPtrWillBeRawPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& pro pertyName) 82 PassRefPtrWillBeRawPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& pro pertyName)
84 { 83 {
85 const Vector<MimeClassInfo>& mimes = m_pluginData->mimes(); 84 const Vector<MimeClassInfo>& mimes = m_pluginData->mimes();
86 for (unsigned i = 0; i < mimes.size(); ++i) 85 for (unsigned i = 0; i < mimes.size(); ++i)
87 if (mimes[i].type == propertyName) 86 if (mimes[i].type == propertyName)
88 return DOMMimeType::create(m_pluginData.get(), m_frame, i).get(); 87 return DOMMimeType::create(m_pluginData.get(), m_frame, i).get();
89 return nullptr; 88 return nullptr;
90 } 89 }
91 90
92 } // namespace blink 91 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/plugins/DOMMimeTypeArray.cpp ('k') | Source/core/plugins/DOMPluginArray.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698