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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« 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