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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLMapElement.h

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 * Copyright (C) 2004, 2010 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2010 Apple Inc. All rights reserved.
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 10 matching lines...) Expand all
21 */ 21 */
22 22
23 #ifndef HTMLMapElement_h 23 #ifndef HTMLMapElement_h
24 #define HTMLMapElement_h 24 #define HTMLMapElement_h
25 25
26 #include "core/CoreExport.h" 26 #include "core/CoreExport.h"
27 #include "core/html/HTMLElement.h" 27 #include "core/html/HTMLElement.h"
28 28
29 namespace blink { 29 namespace blink {
30 30
31 class HitTestResult;
32 class HTMLImageElement; 31 class HTMLImageElement;
33 32
34 class CORE_EXPORT HTMLMapElement final : public HTMLElement { 33 class CORE_EXPORT HTMLMapElement final : public HTMLElement {
35 DEFINE_WRAPPERTYPEINFO(); 34 DEFINE_WRAPPERTYPEINFO();
36 35
37 public: 36 public:
38 DECLARE_NODE_FACTORY(HTMLMapElement); 37 DECLARE_NODE_FACTORY(HTMLMapElement);
39 ~HTMLMapElement() override; 38 ~HTMLMapElement() override;
40 39
41 const AtomicString& getName() const { return m_name; } 40 const AtomicString& getName() const { return m_name; }
(...skipping 13 matching lines...) Expand all
55 54
56 InsertionNotificationRequest insertedInto(ContainerNode*) override; 55 InsertionNotificationRequest insertedInto(ContainerNode*) override;
57 void removedFrom(ContainerNode*) override; 56 void removedFrom(ContainerNode*) override;
58 57
59 AtomicString m_name; 58 AtomicString m_name;
60 }; 59 };
61 60
62 } // namespace blink 61 } // namespace blink
63 62
64 #endif // HTMLMapElement_h 63 #endif // HTMLMapElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h ('k') | third_party/WebKit/Source/core/html/HTMLVideoElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698