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

Side by Side Diff: third_party/WebKit/Source/core/dom/Element.cpp

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 years, 8 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) 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 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * (C) 2007 David Smith (catfish.man@gmail.com) 6 * (C) 2007 David Smith (catfish.man@gmail.com)
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
8 * All rights reserved. 8 * All rights reserved.
9 * (C) 2007 Eric Seidel (eric@webkit.org) 9 * (C) 2007 Eric Seidel (eric@webkit.org)
10 * 10 *
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 #include "core/paint/PaintLayer.h" 134 #include "core/paint/PaintLayer.h"
135 #include "core/probe/CoreProbes.h" 135 #include "core/probe/CoreProbes.h"
136 #include "core/svg/SVGAElement.h" 136 #include "core/svg/SVGAElement.h"
137 #include "core/svg/SVGElement.h" 137 #include "core/svg/SVGElement.h"
138 #include "core/svg/SVGTreeScopeResources.h" 138 #include "core/svg/SVGTreeScopeResources.h"
139 #include "platform/EventDispatchForbiddenScope.h" 139 #include "platform/EventDispatchForbiddenScope.h"
140 #include "platform/RuntimeEnabledFeatures.h" 140 #include "platform/RuntimeEnabledFeatures.h"
141 #include "platform/graphics/CompositorMutableProperties.h" 141 #include "platform/graphics/CompositorMutableProperties.h"
142 #include "platform/graphics/CompositorMutation.h" 142 #include "platform/graphics/CompositorMutation.h"
143 #include "platform/scroll/ScrollableArea.h" 143 #include "platform/scroll/ScrollableArea.h"
144 #include "wtf/BitVector.h" 144 #include "platform/wtf/BitVector.h"
145 #include "wtf/HashFunctions.h" 145 #include "platform/wtf/HashFunctions.h"
146 #include "wtf/text/CString.h" 146 #include "platform/wtf/text/CString.h"
147 #include "wtf/text/StringBuilder.h" 147 #include "platform/wtf/text/StringBuilder.h"
148 #include "wtf/text/TextPosition.h" 148 #include "platform/wtf/text/TextPosition.h"
149 149
150 namespace blink { 150 namespace blink {
151 151
152 namespace { 152 namespace {
153 153
154 // We need to retain the scroll customization callbacks until the element 154 // We need to retain the scroll customization callbacks until the element
155 // they're associated with is destroyed. It would be simplest if the callbacks 155 // they're associated with is destroyed. It would be simplest if the callbacks
156 // could be stored in ElementRareData, but we can't afford the space increase. 156 // could be stored in ElementRareData, but we can't afford the space increase.
157 // Instead, keep the scroll customization callbacks here. The other option would 157 // Instead, keep the scroll customization callbacks here. The other option would
158 // be to store these callbacks on the Page or document, but that necessitates a 158 // be to store these callbacks on the Page or document, but that necessitates a
(...skipping 4183 matching lines...) Expand 10 before | Expand all | Expand 10 after
4342 } 4342 }
4343 4343
4344 DEFINE_TRACE_WRAPPERS(Element) { 4344 DEFINE_TRACE_WRAPPERS(Element) {
4345 if (HasRareData()) { 4345 if (HasRareData()) {
4346 visitor->TraceWrappers(GetElementRareData()); 4346 visitor->TraceWrappers(GetElementRareData());
4347 } 4347 }
4348 ContainerNode::TraceWrappers(visitor); 4348 ContainerNode::TraceWrappers(visitor);
4349 } 4349 }
4350 4350
4351 } // namespace blink 4351 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentStyleSheetCollector.h ('k') | third_party/WebKit/Source/core/dom/ElementData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698