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

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

Issue 25777002: Move custom element code to core/dom/custom/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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/Document.h ('k') | Source/core/dom/DocumentInit.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 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 #include "core/css/MediaQueryMatcher.h" 51 #include "core/css/MediaQueryMatcher.h"
52 #include "core/css/StylePropertySet.h" 52 #include "core/css/StylePropertySet.h"
53 #include "core/css/StyleSheetContents.h" 53 #include "core/css/StyleSheetContents.h"
54 #include "core/css/StyleSheetList.h" 54 #include "core/css/StyleSheetList.h"
55 #include "core/css/resolver/FontBuilder.h" 55 #include "core/css/resolver/FontBuilder.h"
56 #include "core/css/resolver/StyleResolver.h" 56 #include "core/css/resolver/StyleResolver.h"
57 #include "core/dom/Attr.h" 57 #include "core/dom/Attr.h"
58 #include "core/dom/CDATASection.h" 58 #include "core/dom/CDATASection.h"
59 #include "core/dom/Comment.h" 59 #include "core/dom/Comment.h"
60 #include "core/dom/ContextFeatures.h" 60 #include "core/dom/ContextFeatures.h"
61 #include "core/dom/CustomElementRegistrationContext.h"
62 #include "core/dom/DOMImplementation.h" 61 #include "core/dom/DOMImplementation.h"
63 #include "core/dom/DOMNamedFlowCollection.h" 62 #include "core/dom/DOMNamedFlowCollection.h"
64 #include "core/dom/DocumentFragment.h" 63 #include "core/dom/DocumentFragment.h"
65 #include "core/dom/DocumentLifecycleNotifier.h" 64 #include "core/dom/DocumentLifecycleNotifier.h"
66 #include "core/dom/DocumentLifecycleObserver.h" 65 #include "core/dom/DocumentLifecycleObserver.h"
67 #include "core/dom/DocumentMarkerController.h" 66 #include "core/dom/DocumentMarkerController.h"
68 #include "core/dom/DocumentSharedObjectPool.h" 67 #include "core/dom/DocumentSharedObjectPool.h"
69 #include "core/dom/DocumentType.h" 68 #include "core/dom/DocumentType.h"
70 #include "core/dom/Element.h" 69 #include "core/dom/Element.h"
71 #include "core/dom/ElementTraversal.h" 70 #include "core/dom/ElementTraversal.h"
(...skipping 12 matching lines...) Expand all
84 #include "core/dom/RequestAnimationFrameCallback.h" 83 #include "core/dom/RequestAnimationFrameCallback.h"
85 #include "core/dom/ScriptRunner.h" 84 #include "core/dom/ScriptRunner.h"
86 #include "core/dom/ScriptedAnimationController.h" 85 #include "core/dom/ScriptedAnimationController.h"
87 #include "core/dom/SelectorQuery.h" 86 #include "core/dom/SelectorQuery.h"
88 #include "core/dom/StyleEngine.h" 87 #include "core/dom/StyleEngine.h"
89 #include "core/dom/TouchList.h" 88 #include "core/dom/TouchList.h"
90 #include "core/dom/TransformSource.h" 89 #include "core/dom/TransformSource.h"
91 #include "core/dom/TreeWalker.h" 90 #include "core/dom/TreeWalker.h"
92 #include "core/dom/UserActionElementSet.h" 91 #include "core/dom/UserActionElementSet.h"
93 #include "core/dom/VisitedLinkState.h" 92 #include "core/dom/VisitedLinkState.h"
93 #include "core/dom/custom/CustomElementRegistrationContext.h"
94 #include "core/dom/shadow/ElementShadow.h" 94 #include "core/dom/shadow/ElementShadow.h"
95 #include "core/dom/shadow/ShadowRoot.h" 95 #include "core/dom/shadow/ShadowRoot.h"
96 #include "core/editing/Editor.h" 96 #include "core/editing/Editor.h"
97 #include "core/editing/FrameSelection.h" 97 #include "core/editing/FrameSelection.h"
98 #include "core/events/BeforeUnloadEvent.h" 98 #include "core/events/BeforeUnloadEvent.h"
99 #include "core/events/DocumentEventQueue.h" 99 #include "core/events/DocumentEventQueue.h"
100 #include "core/events/Event.h" 100 #include "core/events/Event.h"
101 #include "core/events/EventFactory.h" 101 #include "core/events/EventFactory.h"
102 #include "core/events/EventListener.h" 102 #include "core/events/EventListener.h"
103 #include "core/events/EventNames.h" 103 #include "core/events/EventNames.h"
(...skipping 5217 matching lines...) Expand 10 before | Expand all | Expand 10 after
5321 { 5321 {
5322 return DocumentLifecycleNotifier::create(this); 5322 return DocumentLifecycleNotifier::create(this);
5323 } 5323 }
5324 5324
5325 DocumentLifecycleNotifier* Document::lifecycleNotifier() 5325 DocumentLifecycleNotifier* Document::lifecycleNotifier()
5326 { 5326 {
5327 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier()); 5327 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier());
5328 } 5328 }
5329 5329
5330 } // namespace WebCore 5330 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/DocumentInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698