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

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

Issue 34273002: Remove UnusedParam.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years 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
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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/dom/shadow/ComposedTreeWalker.h ('k') | Source/core/html/shadow/MediaControlElements.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698