| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 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 #ifndef PluginPlaceholderElement_h | |
| 6 #define PluginPlaceholderElement_h | |
| 7 | |
| 8 #include "core/CoreExport.h" | |
| 9 #include "core/dom/Element.h" | |
| 10 #include "core/html/HTMLDivElement.h" | |
| 11 | |
| 12 namespace blink { | |
| 13 | |
| 14 class CORE_EXPORT PluginPlaceholderElement final : public HTMLDivElement { | |
| 15 DEFINE_WRAPPERTYPEINFO(); | |
| 16 public: | |
| 17 static PassRefPtrWillBeRawPtr<PluginPlaceholderElement> create(Document&); | |
| 18 | |
| 19 void setMessage(const String&); | |
| 20 void setIsCloseable(bool); | |
| 21 | |
| 22 private: | |
| 23 explicit PluginPlaceholderElement(Document&); | |
| 24 }; | |
| 25 | |
| 26 } // namespace blink | |
| 27 | |
| 28 #endif // PluginPlaceholderElement_h | |
| OLD | NEW |