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

Side by Side Diff: third_party/WebKit/Source/core/plugins/PluginClient.cpp

Issue 2719333002: second stage
Patch Set: Need to get around resource loading without web/ Created 3 years, 9 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "core/plugins/PluginClient.h"
6 #include "core/html/HTMLPlugInElement.h"
7
8 namespace blink {
9 PluginClient::PluginClient(HTMLPlugInElement* htmlPlugInElement)
10 : m_htmlPluginElement(htmlPlugInElement) {}
11
12 PluginClient::~PluginClient() {}
13
14 v8::Local<v8::Object> PluginClient::scriptableObject(v8::Isolate*) {
15 return v8::Local<v8::Object>();
16 }
17
18 DEFINE_TRACE(PluginClient) {
19 visitor->trace(m_htmlPluginElement);
20 }
21
22 } // namespcae blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/plugins/PluginClient.h ('k') | third_party/WebKit/Source/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698