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

Side by Side Diff: third_party/WebKit/Source/core/page/FrameTree.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 unsigned scopedChildCount() const; 68 unsigned scopedChildCount() const;
69 void invalidateScopedChildCount(); 69 void invalidateScopedChildCount();
70 70
71 DECLARE_TRACE(); 71 DECLARE_TRACE();
72 72
73 private: 73 private:
74 Frame* deepLastChild() const; 74 Frame* deepLastChild() const;
75 AtomicString uniqueChildName(const AtomicString& requestedName) const; 75 AtomicString uniqueChildName(const AtomicString& requestedName) const;
76 bool uniqueNameExists(const AtomicString& name) const; 76 bool uniqueNameExists(const AtomicString& name) const;
77 77
78 RawPtrWillBeMember<Frame> m_thisFrame; 78 Member<Frame> m_thisFrame;
79 79
80 AtomicString m_name; // The actual frame name (may be empty). 80 AtomicString m_name; // The actual frame name (may be empty).
81 AtomicString m_uniqueName; 81 AtomicString m_uniqueName;
82 82
83 mutable unsigned m_scopedChildCount; 83 mutable unsigned m_scopedChildCount;
84 }; 84 };
85 85
86 } // namespace blink 86 } // namespace blink
87 87
88 #ifndef NDEBUG 88 #ifndef NDEBUG
89 // Outside the WebCore namespace for ease of invocation from gdb. 89 // Outside the WebCore namespace for ease of invocation from gdb.
90 void showFrameTree(const blink::Frame*); 90 void showFrameTree(const blink::Frame*);
91 #endif 91 #endif
92 92
93 #endif // FrameTree_h 93 #endif // FrameTree_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698