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

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

Issue 2177783003: [Editing][DOM][CodeHealth] Move Node::*editable* functions to core/editing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 #include "core/dom/TreeWalker.h" 106 #include "core/dom/TreeWalker.h"
107 #include "core/dom/VisitedLinkState.h" 107 #include "core/dom/VisitedLinkState.h"
108 #include "core/dom/XMLDocument.h" 108 #include "core/dom/XMLDocument.h"
109 #include "core/dom/custom/CustomElement.h" 109 #include "core/dom/custom/CustomElement.h"
110 #include "core/dom/custom/V0CustomElementMicrotaskRunQueue.h" 110 #include "core/dom/custom/V0CustomElementMicrotaskRunQueue.h"
111 #include "core/dom/custom/V0CustomElementRegistrationContext.h" 111 #include "core/dom/custom/V0CustomElementRegistrationContext.h"
112 #include "core/dom/shadow/ElementShadow.h" 112 #include "core/dom/shadow/ElementShadow.h"
113 #include "core/dom/shadow/FlatTreeTraversal.h" 113 #include "core/dom/shadow/FlatTreeTraversal.h"
114 #include "core/dom/shadow/ShadowRoot.h" 114 #include "core/dom/shadow/ShadowRoot.h"
115 #include "core/editing/DragCaretController.h" 115 #include "core/editing/DragCaretController.h"
116 #include "core/editing/EditingUtilities.h"
116 #include "core/editing/Editor.h" 117 #include "core/editing/Editor.h"
117 #include "core/editing/FrameSelection.h" 118 #include "core/editing/FrameSelection.h"
118 #include "core/editing/InputMethodController.h" 119 #include "core/editing/InputMethodController.h"
119 #include "core/editing/markers/DocumentMarkerController.h" 120 #include "core/editing/markers/DocumentMarkerController.h"
120 #include "core/editing/serializers/Serialization.h" 121 #include "core/editing/serializers/Serialization.h"
121 #include "core/editing/spellcheck/SpellChecker.h" 122 #include "core/editing/spellcheck/SpellChecker.h"
122 #include "core/events/BeforeUnloadEvent.h" 123 #include "core/events/BeforeUnloadEvent.h"
123 #include "core/events/Event.h" 124 #include "core/events/Event.h"
124 #include "core/events/EventFactory.h" 125 #include "core/events/EventFactory.h"
125 #include "core/events/EventListener.h" 126 #include "core/events/EventListener.h"
(...skipping 5921 matching lines...) Expand 10 before | Expand all | Expand 10 after
6047 } 6048 }
6048 6049
6049 void showLiveDocumentInstances() 6050 void showLiveDocumentInstances()
6050 { 6051 {
6051 WeakDocumentSet& set = liveDocumentSet(); 6052 WeakDocumentSet& set = liveDocumentSet();
6052 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6053 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6053 for (Document* document : set) 6054 for (Document* document : set)
6054 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data()); 6055 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data());
6055 } 6056 }
6056 #endif 6057 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Node.h » ('j') | third_party/WebKit/Source/core/editing/EditingUtilities.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698