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 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) | 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) |
5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "core/page/Settings.h" | 42 #include "core/page/Settings.h" |
43 #include "core/plugins/PluginView.h" | 43 #include "core/plugins/PluginView.h" |
44 #include "core/rendering/RenderEmbeddedObject.h" | 44 #include "core/rendering/RenderEmbeddedObject.h" |
45 #include "core/rendering/RenderImage.h" | 45 #include "core/rendering/RenderImage.h" |
46 #include "core/rendering/RenderWidget.h" | 46 #include "core/rendering/RenderWidget.h" |
47 #include "platform/Logging.h" | 47 #include "platform/Logging.h" |
48 #include "platform/MIMETypeFromURL.h" | 48 #include "platform/MIMETypeFromURL.h" |
49 #include "platform/MIMETypeRegistry.h" | 49 #include "platform/MIMETypeRegistry.h" |
50 #include "platform/Widget.h" | 50 #include "platform/Widget.h" |
51 #include "platform/plugins/PluginData.h" | 51 #include "platform/plugins/PluginData.h" |
52 #include "wtf/UnusedParam.h" | |
53 | |
54 | 52 |
55 namespace WebCore { | 53 namespace WebCore { |
56 | 54 |
57 using namespace HTMLNames; | 55 using namespace HTMLNames; |
58 | 56 |
59 HTMLPlugInElement::HTMLPlugInElement(const QualifiedName& tagName, Document& doc
, bool createdByParser, PreferPlugInsForImagesOption preferPlugInsForImagesOptio
n) | 57 HTMLPlugInElement::HTMLPlugInElement(const QualifiedName& tagName, Document& doc
, bool createdByParser, PreferPlugInsForImagesOption preferPlugInsForImagesOptio
n) |
60 : HTMLFrameOwnerElement(tagName, doc) | 58 : HTMLFrameOwnerElement(tagName, doc) |
61 , m_isDelayingLoadEvent(false) | 59 , m_isDelayingLoadEvent(false) |
62 , m_NPObject(0) | 60 , m_NPObject(0) |
63 , m_isCapturingMouseEvents(false) | 61 , m_isCapturingMouseEvents(false) |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 if (root.isOldestAuthorShadowRoot()) | 517 if (root.isOldestAuthorShadowRoot()) |
520 lazyReattachIfAttached(); | 518 lazyReattachIfAttached(); |
521 } | 519 } |
522 | 520 |
523 bool HTMLPlugInElement::useFallbackContent() const | 521 bool HTMLPlugInElement::useFallbackContent() const |
524 { | 522 { |
525 return hasAuthorShadowRoot(); | 523 return hasAuthorShadowRoot(); |
526 } | 524 } |
527 | 525 |
528 } | 526 } |
OLD | NEW |