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

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

Issue 190633010: Use DEFINE_ELEMENT_TYPE_CASTS*() macros for Element subclasses (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/HTMLFrameElementBase.h ('k') | Source/core/html/HTMLLegendElement.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) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool lockBackForwardList); 70 bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool lockBackForwardList);
71 71
72 private: 72 private:
73 virtual bool isKeyboardFocusable() const OVERRIDE; 73 virtual bool isKeyboardFocusable() const OVERRIDE;
74 virtual bool isFrameOwnerElement() const OVERRIDE FINAL { return true; } 74 virtual bool isFrameOwnerElement() const OVERRIDE FINAL { return true; }
75 75
76 LocalFrame* m_contentFrame; 76 LocalFrame* m_contentFrame;
77 SandboxFlags m_sandboxFlags; 77 SandboxFlags m_sandboxFlags;
78 }; 78 };
79 79
80 DEFINE_NODE_TYPE_CASTS(HTMLFrameOwnerElement, isFrameOwnerElement()); 80 DEFINE_ELEMENT_TYPE_CASTS(HTMLFrameOwnerElement, isFrameOwnerElement());
81 81
82 class SubframeLoadingDisabler { 82 class SubframeLoadingDisabler {
83 public: 83 public:
84 explicit SubframeLoadingDisabler(Node& root) 84 explicit SubframeLoadingDisabler(Node& root)
85 : m_root(root) 85 : m_root(root)
86 { 86 {
87 disabledSubtreeRoots().add(&m_root); 87 disabledSubtreeRoots().add(&m_root);
88 } 88 }
89 89
90 ~SubframeLoadingDisabler() 90 ~SubframeLoadingDisabler()
(...skipping 18 matching lines...) Expand all
109 DEFINE_STATIC_LOCAL(HashCountedSet<Node*>, nodes, ()); 109 DEFINE_STATIC_LOCAL(HashCountedSet<Node*>, nodes, ());
110 return nodes; 110 return nodes;
111 } 111 }
112 112
113 Node& m_root; 113 Node& m_root;
114 }; 114 };
115 115
116 } // namespace WebCore 116 } // namespace WebCore
117 117
118 #endif // HTMLFrameOwnerElement_h 118 #endif // HTMLFrameOwnerElement_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFrameElementBase.h ('k') | Source/core/html/HTMLLegendElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698