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

Side by Side Diff: Source/core/dom/shadow/InsertionPoint.h

Issue 422463002: Hide isXXX() type checking methods in subclasses (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/dom/Text.h ('k') | Source/core/html/HTMLElement.h » ('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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 protected: 72 protected:
73 InsertionPoint(const QualifiedName&, Document&); 73 InsertionPoint(const QualifiedName&, Document&);
74 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE; 74 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
75 virtual void childrenChanged(const ChildrenChange&) OVERRIDE; 75 virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
76 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; 76 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
77 virtual void removedFrom(ContainerNode*) OVERRIDE; 77 virtual void removedFrom(ContainerNode*) OVERRIDE;
78 virtual void willRecalcStyle(StyleRecalcChange) OVERRIDE; 78 virtual void willRecalcStyle(StyleRecalcChange) OVERRIDE;
79 79
80 private: 80 private:
81 bool isInsertionPoint() const WTF_DELETED_FUNCTION; // Hide to catch useless calls.
82
81 ContentDistribution m_distribution; 83 ContentDistribution m_distribution;
82 bool m_registeredWithShadowRoot; 84 bool m_registeredWithShadowRoot;
83 }; 85 };
84 86
85 typedef WillBeHeapVector<RefPtrWillBeMember<InsertionPoint> > DestinationInserti onPoints; 87 typedef WillBeHeapVector<RefPtrWillBeMember<InsertionPoint> > DestinationInserti onPoints;
86 88
87 DEFINE_ELEMENT_TYPE_CASTS(InsertionPoint, isInsertionPoint()); 89 DEFINE_ELEMENT_TYPE_CASTS(InsertionPoint, isInsertionPoint());
88 90
89 inline bool isActiveInsertionPoint(const Node& node) 91 inline bool isActiveInsertionPoint(const Node& node)
90 { 92 {
(...skipping 19 matching lines...) Expand all
110 return 0; 112 return 0;
111 } 113 }
112 114
113 const InsertionPoint* resolveReprojection(const Node*); 115 const InsertionPoint* resolveReprojection(const Node*);
114 116
115 void collectDestinationInsertionPoints(const Node&, WillBeHeapVector<RawPtrWillB eMember<InsertionPoint>, 8>& results); 117 void collectDestinationInsertionPoints(const Node&, WillBeHeapVector<RawPtrWillB eMember<InsertionPoint>, 8>& results);
116 118
117 } // namespace blink 119 } // namespace blink
118 120
119 #endif // InsertionPoint_h 121 #endif // InsertionPoint_h
OLDNEW
« no previous file with comments | « Source/core/dom/Text.h ('k') | Source/core/html/HTMLElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698