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

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

Issue 1295073002: Move serializer related files in core/editing/ related files into core/editing/serializers/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-17T15:24:31 Rebase for Source/web/WebPageSerializerImpl.cpp Created 5 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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Range.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) 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. All rights reserved. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
8 * (C) 2007 Eric Seidel (eric@webkit.org) 8 * (C) 2007 Eric Seidel (eric@webkit.org)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 #include "core/dom/StyleChangeReason.h" 71 #include "core/dom/StyleChangeReason.h"
72 #include "core/dom/StyleEngine.h" 72 #include "core/dom/StyleEngine.h"
73 #include "core/dom/Text.h" 73 #include "core/dom/Text.h"
74 #include "core/dom/custom/CustomElement.h" 74 #include "core/dom/custom/CustomElement.h"
75 #include "core/dom/custom/CustomElementRegistrationContext.h" 75 #include "core/dom/custom/CustomElementRegistrationContext.h"
76 #include "core/dom/shadow/InsertionPoint.h" 76 #include "core/dom/shadow/InsertionPoint.h"
77 #include "core/dom/shadow/ShadowRoot.h" 77 #include "core/dom/shadow/ShadowRoot.h"
78 #include "core/dom/shadow/ShadowRootInit.h" 78 #include "core/dom/shadow/ShadowRootInit.h"
79 #include "core/editing/EditingUtilities.h" 79 #include "core/editing/EditingUtilities.h"
80 #include "core/editing/FrameSelection.h" 80 #include "core/editing/FrameSelection.h"
81 #include "core/editing/Serialization.h"
82 #include "core/editing/iterators/TextIterator.h" 81 #include "core/editing/iterators/TextIterator.h"
82 #include "core/editing/serializers/Serialization.h"
83 #include "core/events/EventDispatcher.h" 83 #include "core/events/EventDispatcher.h"
84 #include "core/events/FocusEvent.h" 84 #include "core/events/FocusEvent.h"
85 #include "core/frame/FrameHost.h" 85 #include "core/frame/FrameHost.h"
86 #include "core/frame/FrameView.h" 86 #include "core/frame/FrameView.h"
87 #include "core/frame/LocalDOMWindow.h" 87 #include "core/frame/LocalDOMWindow.h"
88 #include "core/frame/LocalFrame.h" 88 #include "core/frame/LocalFrame.h"
89 #include "core/frame/OriginsUsingFeatures.h" 89 #include "core/frame/OriginsUsingFeatures.h"
90 #include "core/frame/ScrollToOptions.h" 90 #include "core/frame/ScrollToOptions.h"
91 #include "core/frame/Settings.h" 91 #include "core/frame/Settings.h"
92 #include "core/frame/UseCounter.h" 92 #include "core/frame/UseCounter.h"
(...skipping 3405 matching lines...) Expand 10 before | Expand all | Expand 10 after
3498 { 3498 {
3499 #if ENABLE(OILPAN) 3499 #if ENABLE(OILPAN)
3500 if (hasRareData()) 3500 if (hasRareData())
3501 visitor->trace(elementRareData()); 3501 visitor->trace(elementRareData());
3502 visitor->trace(m_elementData); 3502 visitor->trace(m_elementData);
3503 #endif 3503 #endif
3504 ContainerNode::trace(visitor); 3504 ContainerNode::trace(visitor);
3505 } 3505 }
3506 3506
3507 } // namespace blink 3507 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Range.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698