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

Side by Side Diff: Source/core/html/HTMLPlugInElement.h

Issue 625073002: Merge RenderWidget into single subclass, RenderPart (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLObjectElement.cpp ('k') | Source/core/html/HTMLPlugInElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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();
47 virtual void trace(Visitor*) override; 47 virtual void trace(Visitor*) override;
48 48
49 void resetInstance(); 49 void resetInstance();
50 SharedPersistent<v8::Object>* pluginWrapper(); 50 SharedPersistent<v8::Object>* pluginWrapper();
51 Widget* pluginWidget() const; 51 Widget* pluginWidget() const;
52 NPObject* getNPObject(); 52 NPObject* getNPObject();
53 bool canProcessDrag() const; 53 bool canProcessDrag() const;
54 const String& url() const { return m_url; } 54 const String& url() const { return m_url; }
55 55
56 // Public for FrameView::addWidgetToUpdate() 56 // Public for FrameView::addPartToUpdate()
57 bool needsWidgetUpdate() const { return m_needsWidgetUpdate; } 57 bool needsWidgetUpdate() const { return m_needsWidgetUpdate; }
58 void setNeedsWidgetUpdate(bool needsWidgetUpdate) { m_needsWidgetUpdate = ne edsWidgetUpdate; } 58 void setNeedsWidgetUpdate(bool needsWidgetUpdate) { m_needsWidgetUpdate = ne edsWidgetUpdate; }
59 void updateWidget(); 59 void updateWidget();
60 60
61 bool shouldAccelerate() const; 61 bool shouldAccelerate() const;
62 62
63 void requestPluginCreationWithoutRendererIfPossible(); 63 void requestPluginCreationWithoutRendererIfPossible();
64 void createPluginWithoutRenderer(); 64 void createPluginWithoutRenderer();
65 65
66 bool usePlaceholderContent() const { return m_usePlaceholderContent; } 66 bool usePlaceholderContent() const { return m_usePlaceholderContent; }
67 void setUsePlaceholderContent(bool); 67 void setUsePlaceholderContent(bool);
68 68
69 protected: 69 protected:
70 HTMLPlugInElement(const QualifiedName& tagName, Document&, bool createdByPar ser, PreferPlugInsForImagesOption); 70 HTMLPlugInElement(const QualifiedName& tagName, Document&, bool createdByPar ser, PreferPlugInsForImagesOption);
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
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
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
OLDNEW
« no previous file with comments | « Source/core/html/HTMLObjectElement.cpp ('k') | Source/core/html/HTMLPlugInElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698