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

Side by Side Diff: Source/core/html/shadow/PluginPlaceholderElement.h

Issue 1313763002: Blink Plugins: Remove Shadow DOM Plugin Placeholder (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: merge origin/master Created 5 years, 3 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 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
OLDNEW
« no previous file with comments | « Source/core/html/HTMLPlugInElement.cpp ('k') | Source/core/html/shadow/PluginPlaceholderElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698