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

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

Issue 1293683003: Move DocumentMarker related files to editing/markers/ from dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-14T22:49:39 Rebase 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/core.gypi ('k') | Source/core/dom/DocumentMarker.h » ('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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "core/dom/AXObjectCache.h" 61 #include "core/dom/AXObjectCache.h"
62 #include "core/dom/AddConsoleMessageTask.h" 62 #include "core/dom/AddConsoleMessageTask.h"
63 #include "core/dom/Attr.h" 63 #include "core/dom/Attr.h"
64 #include "core/dom/CDATASection.h" 64 #include "core/dom/CDATASection.h"
65 #include "core/dom/ClientRect.h" 65 #include "core/dom/ClientRect.h"
66 #include "core/dom/Comment.h" 66 #include "core/dom/Comment.h"
67 #include "core/dom/ContextFeatures.h" 67 #include "core/dom/ContextFeatures.h"
68 #include "core/dom/DOMImplementation.h" 68 #include "core/dom/DOMImplementation.h"
69 #include "core/dom/DocumentFragment.h" 69 #include "core/dom/DocumentFragment.h"
70 #include "core/dom/DocumentLifecycleObserver.h" 70 #include "core/dom/DocumentLifecycleObserver.h"
71 #include "core/dom/DocumentMarkerController.h"
72 #include "core/dom/DocumentType.h" 71 #include "core/dom/DocumentType.h"
73 #include "core/dom/Element.h" 72 #include "core/dom/Element.h"
74 #include "core/dom/ElementDataCache.h" 73 #include "core/dom/ElementDataCache.h"
75 #include "core/dom/ElementRegistrationOptions.h" 74 #include "core/dom/ElementRegistrationOptions.h"
76 #include "core/dom/ElementTraversal.h" 75 #include "core/dom/ElementTraversal.h"
77 #include "core/dom/ExceptionCode.h" 76 #include "core/dom/ExceptionCode.h"
78 #include "core/dom/ExecutionContextTask.h" 77 #include "core/dom/ExecutionContextTask.h"
79 #include "core/dom/FrameRequestCallback.h" 78 #include "core/dom/FrameRequestCallback.h"
80 #include "core/dom/LayoutTreeBuilderTraversal.h" 79 #include "core/dom/LayoutTreeBuilderTraversal.h"
81 #include "core/dom/MainThreadTaskRunner.h" 80 #include "core/dom/MainThreadTaskRunner.h"
(...skipping 21 matching lines...) Expand all
103 #include "core/dom/custom/CustomElementMicrotaskRunQueue.h" 102 #include "core/dom/custom/CustomElementMicrotaskRunQueue.h"
104 #include "core/dom/custom/CustomElementRegistrationContext.h" 103 #include "core/dom/custom/CustomElementRegistrationContext.h"
105 #include "core/dom/shadow/ComposedTreeTraversal.h" 104 #include "core/dom/shadow/ComposedTreeTraversal.h"
106 #include "core/dom/shadow/ElementShadow.h" 105 #include "core/dom/shadow/ElementShadow.h"
107 #include "core/dom/shadow/ShadowRoot.h" 106 #include "core/dom/shadow/ShadowRoot.h"
108 #include "core/editing/DragCaretController.h" 107 #include "core/editing/DragCaretController.h"
109 #include "core/editing/Editor.h" 108 #include "core/editing/Editor.h"
110 #include "core/editing/FrameSelection.h" 109 #include "core/editing/FrameSelection.h"
111 #include "core/editing/Serialization.h" 110 #include "core/editing/Serialization.h"
112 #include "core/editing/SpellChecker.h" 111 #include "core/editing/SpellChecker.h"
112 #include "core/editing/markers/DocumentMarkerController.h"
113 #include "core/events/BeforeUnloadEvent.h" 113 #include "core/events/BeforeUnloadEvent.h"
114 #include "core/events/Event.h" 114 #include "core/events/Event.h"
115 #include "core/events/EventFactory.h" 115 #include "core/events/EventFactory.h"
116 #include "core/events/EventListener.h" 116 #include "core/events/EventListener.h"
117 #include "core/events/HashChangeEvent.h" 117 #include "core/events/HashChangeEvent.h"
118 #include "core/events/PageTransitionEvent.h" 118 #include "core/events/PageTransitionEvent.h"
119 #include "core/events/ScopedEventQueue.h" 119 #include "core/events/ScopedEventQueue.h"
120 #include "core/fetch/ResourceFetcher.h" 120 #include "core/fetch/ResourceFetcher.h"
121 #include "core/frame/DOMTimer.h" 121 #include "core/frame/DOMTimer.h"
122 #include "core/frame/EventHandlerRegistry.h" 122 #include "core/frame/EventHandlerRegistry.h"
(...skipping 5649 matching lines...) Expand 10 before | Expand all | Expand 10 after
5772 #ifndef NDEBUG 5772 #ifndef NDEBUG
5773 using namespace blink; 5773 using namespace blink;
5774 void showLiveDocumentInstances() 5774 void showLiveDocumentInstances()
5775 { 5775 {
5776 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 5776 Document::WeakDocumentSet& set = Document::liveDocumentSet();
5777 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5777 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5778 for (Document* document : set) 5778 for (Document* document : set)
5779 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5779 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5780 } 5780 }
5781 #endif 5781 #endif
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/DocumentMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698