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

Side by Side Diff: Source/core/dom/NodeRareData.h

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 7 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/NodeIterator.cpp ('k') | Source/core/dom/NodeRareData.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) 2008, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com> 3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 * 19 *
20 */ 20 */
21 21
22 #ifndef NodeRareData_h 22 #ifndef NodeRareData_h
23 #define NodeRareData_h 23 #define NodeRareData_h
24 24
25 #include "ChildNodeList.h"
26 #include "DOMSettableTokenList.h" 25 #include "DOMSettableTokenList.h"
27 #include "HTMLNames.h" 26 #include "HTMLNames.h"
28 #include "LiveNodeList.h"
29 #include "MutationObserver.h"
30 #include "MutationObserverRegistration.h"
31 #include "QualifiedName.h"
32 #include "TagNodeList.h"
33 #include "TextTrack.h" 27 #include "TextTrack.h"
28 #include "core/dom/ChildNodeList.h"
29 #include "core/dom/LiveNodeList.h"
30 #include "core/dom/MutationObserver.h"
31 #include "core/dom/MutationObserverRegistration.h"
32 #include "core/dom/QualifiedName.h"
33 #include "core/dom/TagNodeList.h"
34 #include "core/page/Page.h" 34 #include "core/page/Page.h"
35 #include <wtf/HashSet.h> 35 #include <wtf/HashSet.h>
36 #include <wtf/OwnPtr.h> 36 #include <wtf/OwnPtr.h>
37 #include <wtf/PassOwnPtr.h> 37 #include <wtf/PassOwnPtr.h>
38 #include <wtf/text/AtomicString.h> 38 #include <wtf/text/AtomicString.h>
39 #include <wtf/text/StringHash.h> 39 #include <wtf/text/StringHash.h>
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 class LabelsNodeList; 43 class LabelsNodeList;
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 ownerNode->clearNodeLists(); 307 ownerNode->clearNodeLists();
308 return true; 308 return true;
309 } 309 }
310 310
311 // Ensure the 10 bits reserved for the m_connectedFrameCount cannot overflow 311 // Ensure the 10 bits reserved for the m_connectedFrameCount cannot overflow
312 COMPILE_ASSERT(Page::maxNumberOfFrames < 1024, Frame_limit_should_fit_in_rare_da ta_count); 312 COMPILE_ASSERT(Page::maxNumberOfFrames < 1024, Frame_limit_should_fit_in_rare_da ta_count);
313 313
314 } // namespace WebCore 314 } // namespace WebCore
315 315
316 #endif // NodeRareData_h 316 #endif // NodeRareData_h
OLDNEW
« no previous file with comments | « Source/core/dom/NodeIterator.cpp ('k') | Source/core/dom/NodeRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698