| Index: third_party/WebKit/Source/core/plugins/PluginClient.cpp
|
| diff --git a/third_party/WebKit/Source/core/plugins/PluginClient.cpp b/third_party/WebKit/Source/core/plugins/PluginClient.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..092a9f1311dbb81648e8decf3eb0738d1d596667
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/plugins/PluginClient.cpp
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "core/plugins/PluginClient.h"
|
| +#include "core/html/HTMLPlugInElement.h"
|
| +
|
| +namespace blink {
|
| +PluginClient::PluginClient(HTMLPlugInElement* htmlPlugInElement)
|
| + : m_htmlPluginElement(htmlPlugInElement) {}
|
| +
|
| +PluginClient::~PluginClient() {}
|
| +
|
| +v8::Local<v8::Object> PluginClient::scriptableObject(v8::Isolate*) {
|
| + return v8::Local<v8::Object>();
|
| +}
|
| +
|
| +DEFINE_TRACE(PluginClient) {
|
| + visitor->trace(m_htmlPluginElement);
|
| +}
|
| +
|
| +} // namespcae blink
|
|
|