| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserv
ed. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "bindings/core/v8/SharedPersistent.h" | 26 #include "bindings/core/v8/SharedPersistent.h" |
| 27 #include "core/html/HTMLFrameOwnerElement.h" | 27 #include "core/html/HTMLFrameOwnerElement.h" |
| 28 #include <v8.h> | 28 #include <v8.h> |
| 29 | 29 |
| 30 struct NPObject; | 30 struct NPObject; |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 class HTMLImageLoader; | 34 class HTMLImageLoader; |
| 35 class RenderEmbeddedObject; | 35 class RenderEmbeddedObject; |
| 36 class RenderWidget; | 36 class RenderPart; |
| 37 class Widget; | 37 class Widget; |
| 38 | 38 |
| 39 enum PreferPlugInsForImagesOption { | 39 enum PreferPlugInsForImagesOption { |
| 40 ShouldPreferPlugInsForImages, | 40 ShouldPreferPlugInsForImages, |
| 41 ShouldNotPreferPlugInsForImages | 41 ShouldNotPreferPlugInsForImages |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 class HTMLPlugInElement : public HTMLFrameOwnerElement { | 44 class HTMLPlugInElement : public HTMLFrameOwnerElement { |
| 45 public: | 45 public: |
| 46 virtual ~HTMLPlugInElement(); | 46 virtual ~HTMLPlugInElement(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 71 | 71 |
| 72 // Node functions: | 72 // Node functions: |
| 73 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE; | 73 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE; |
| 74 | 74 |
| 75 // Element functions: | 75 // Element functions: |
| 76 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; | 76 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; |
| 77 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; | 77 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; |
| 78 | 78 |
| 79 virtual bool hasFallbackContent() const; | 79 virtual bool hasFallbackContent() const; |
| 80 virtual bool useFallbackContent() const; | 80 virtual bool useFallbackContent() const; |
| 81 // Create or update the RenderWidget and return it, triggering layout if | 81 // Create or update the RenderPart and return it, triggering layout if |
| 82 // necessary. | 82 // necessary. |
| 83 virtual RenderWidget* renderWidgetForJSBindings() const; | 83 virtual RenderPart* renderPartForJSBindings() const; |
| 84 | 84 |
| 85 bool isImageType(); | 85 bool isImageType(); |
| 86 bool shouldPreferPlugInsForImages() const { return m_shouldPreferPlugInsForI
mages; } | 86 bool shouldPreferPlugInsForImages() const { return m_shouldPreferPlugInsForI
mages; } |
| 87 RenderEmbeddedObject* renderEmbeddedObject() const; | 87 RenderEmbeddedObject* renderEmbeddedObject() const; |
| 88 bool allowedToLoadFrameURL(const String& url); | 88 bool allowedToLoadFrameURL(const String& url); |
| 89 bool requestObject(const String& url, const String& mimeType, const Vector<S
tring>& paramNames, const Vector<String>& paramValues); | 89 bool requestObject(const String& url, const String& mimeType, const Vector<S
tring>& paramNames, const Vector<String>& paramValues); |
| 90 bool shouldUsePlugin(const KURL&, const String& mimeType, bool hasFallback,
bool& useFallback); | 90 bool shouldUsePlugin(const KURL&, const String& mimeType, bool hasFallback,
bool& useFallback); |
| 91 | 91 |
| 92 void dispatchErrorEvent(); | 92 void dispatchErrorEvent(); |
| 93 void lazyReattachIfNeeded(); | 93 void lazyReattachIfNeeded(); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 115 virtual bool supportsFocus() const OVERRIDE FINAL { return true; } | 115 virtual bool supportsFocus() const OVERRIDE FINAL { return true; } |
| 116 virtual bool rendererIsFocusable() const OVERRIDE FINAL; | 116 virtual bool rendererIsFocusable() const OVERRIDE FINAL; |
| 117 virtual bool isKeyboardFocusable() const OVERRIDE FINAL; | 117 virtual bool isKeyboardFocusable() const OVERRIDE FINAL; |
| 118 virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE FINAL; | 118 virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE FINAL; |
| 119 virtual void willAddFirstAuthorShadowRoot() OVERRIDE FINAL; | 119 virtual void willAddFirstAuthorShadowRoot() OVERRIDE FINAL; |
| 120 | 120 |
| 121 // HTMLElement function: | 121 // HTMLElement function: |
| 122 virtual bool hasCustomFocusLogic() const OVERRIDE; | 122 virtual bool hasCustomFocusLogic() const OVERRIDE; |
| 123 virtual bool isPluginElement() const OVERRIDE FINAL; | 123 virtual bool isPluginElement() const OVERRIDE FINAL; |
| 124 | 124 |
| 125 // Return any existing RenderWidget without triggering relayout, or 0 if it | 125 // Return any existing RenderPart without triggering relayout, or 0 if it |
| 126 // doesn't yet exist. | 126 // doesn't yet exist. |
| 127 virtual RenderWidget* existingRenderWidget() const = 0; | 127 virtual RenderPart* existingRenderPart() const = 0; |
| 128 virtual void updateWidgetInternal() = 0; | 128 virtual void updateWidgetInternal() = 0; |
| 129 | 129 |
| 130 bool loadPlugin(const KURL&, const String& mimeType, const Vector<String>& p
aramNames, const Vector<String>& paramValues, bool useFallback, bool requireRend
erer); | 130 bool loadPlugin(const KURL&, const String& mimeType, const Vector<String>& p
aramNames, const Vector<String>& paramValues, bool useFallback, bool requireRend
erer); |
| 131 bool pluginIsLoadable(const KURL&, const String& mimeType); | 131 bool pluginIsLoadable(const KURL&, const String& mimeType); |
| 132 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType)
; | 132 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType)
; |
| 133 | 133 |
| 134 mutable RefPtr<SharedPersistent<v8::Object> > m_pluginWrapper; | 134 mutable RefPtr<SharedPersistent<v8::Object> > m_pluginWrapper; |
| 135 NPObject* m_NPObject; | 135 NPObject* m_NPObject; |
| 136 bool m_isCapturingMouseEvents; | 136 bool m_isCapturingMouseEvents; |
| 137 bool m_needsWidgetUpdate; | 137 bool m_needsWidgetUpdate; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 149 inline bool isHTMLPlugInElement(const HTMLElement& element) | 149 inline bool isHTMLPlugInElement(const HTMLElement& element) |
| 150 { | 150 { |
| 151 return element.isPluginElement(); | 151 return element.isPluginElement(); |
| 152 } | 152 } |
| 153 | 153 |
| 154 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLPlugInElement); | 154 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLPlugInElement); |
| 155 | 155 |
| 156 } // namespace blink | 156 } // namespace blink |
| 157 | 157 |
| 158 #endif // HTMLPlugInElement_h | 158 #endif // HTMLPlugInElement_h |
| OLD | NEW |