OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PluginPlaceholderImpl_h | 5 #ifndef PluginPlaceholderImpl_h |
6 #define PluginPlaceholderImpl_h | 6 #define PluginPlaceholderImpl_h |
7 | 7 |
8 #include "core/plugins/PluginPlaceholder.h" | 8 #include "core/plugins/PluginPlaceholder.h" |
9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
10 #include "platform/heap/Visitor.h" | |
11 #include "wtf/Assertions.h" | 10 #include "wtf/Assertions.h" |
12 #include "wtf/OwnPtr.h" | 11 #include "wtf/OwnPtr.h" |
13 #include "wtf/PassOwnPtr.h" | 12 #include "wtf/PassOwnPtr.h" |
14 | 13 |
15 namespace blink { | 14 namespace blink { |
16 | 15 |
17 class Document; | 16 class Document; |
18 class PluginPlaceholderElement; | 17 class PluginPlaceholderElement; |
19 class WebPluginPlaceholder; | 18 class WebPluginPlaceholder; |
20 | 19 |
(...skipping 29 matching lines...) Expand all Loading... |
50 // Update the placeholder element with fresh content. | 49 // Update the placeholder element with fresh content. |
51 void update(); | 50 void update(); |
52 | 51 |
53 OwnPtr<WebPluginPlaceholder> m_webPluginPlaceholder; | 52 OwnPtr<WebPluginPlaceholder> m_webPluginPlaceholder; |
54 RefPtrWillBeMember<PluginPlaceholderElement> m_placeholderElement; | 53 RefPtrWillBeMember<PluginPlaceholderElement> m_placeholderElement; |
55 }; | 54 }; |
56 | 55 |
57 } // namespace blink | 56 } // namespace blink |
58 | 57 |
59 #endif // PluginPlaceholderImpl_h | 58 #endif // PluginPlaceholderImpl_h |
OLD | NEW |