Chromium Code Reviews| Index: Source/core/html/shadow/PluginPlaceholderElement.cpp |
| diff --git a/Source/core/html/shadow/PluginPlaceholderElement.cpp b/Source/core/html/shadow/PluginPlaceholderElement.cpp |
| index 6096d609e1d2f6b476dc37e0247cec8e4ad2e2f2..414edf51672a771269966523f3e716e1b02aee6b 100644 |
| --- a/Source/core/html/shadow/PluginPlaceholderElement.cpp |
| +++ b/Source/core/html/shadow/PluginPlaceholderElement.cpp |
| @@ -6,8 +6,10 @@ |
| #include "core/html/shadow/PluginPlaceholderElement.h" |
| #include "bindings/core/v8/V8PluginPlaceholderElement.h" |
| +#include "core/UserAgentStyleSheets.h" |
| #include "core/dom/Document.h" |
| #include "wtf/Assertions.h" |
| +#include "wtf/text/WTFString.h" |
| namespace blink { |
| @@ -31,6 +33,11 @@ void PluginPlaceholderElement::setMessage(const String& htmlMessage) |
| ASSERT_UNUSED(success, success); |
| } |
| +String PluginPlaceholderElement::styleSource() const |
| +{ |
| + return pluginPlaceholderElementCss; |
|
abarth-chromium
2014/09/02 22:34:34
Please use GRD to load this resource. See other c
jbroman
2014/09/02 23:53:32
I'd done that previously, though I had trouble. In
jbroman
2014/09/16 21:39:25
Done.
|
| +} |
| + |
| v8::Handle<v8::Object> PluginPlaceholderElement::wrap(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) |
| { |
| return blink::wrap(this, creationContext, isolate); |