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

Side by Side Diff: Source/core/editing/SplitElementCommand.cpp

Issue 23819007: Have Node::document() return a reference instead of a pointer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 17 matching lines...) Expand all
28 28
29 #include "HTMLNames.h" 29 #include "HTMLNames.h"
30 #include "bindings/v8/ExceptionState.h" 30 #include "bindings/v8/ExceptionState.h"
31 #include "bindings/v8/ExceptionStatePlaceholder.h" 31 #include "bindings/v8/ExceptionStatePlaceholder.h"
32 #include "core/dom/Element.h" 32 #include "core/dom/Element.h"
33 #include "wtf/Assertions.h" 33 #include "wtf/Assertions.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 SplitElementCommand::SplitElementCommand(PassRefPtr<Element> element, PassRefPtr <Node> atChild) 37 SplitElementCommand::SplitElementCommand(PassRefPtr<Element> element, PassRefPtr <Node> atChild)
38 : SimpleEditCommand(element->document()) 38 : SimpleEditCommand(&element->document())
39 , m_element2(element) 39 , m_element2(element)
40 , m_atChild(atChild) 40 , m_atChild(atChild)
41 { 41 {
42 ASSERT(m_element2); 42 ASSERT(m_element2);
43 ASSERT(m_atChild); 43 ASSERT(m_atChild);
44 ASSERT(m_atChild->parentNode() == m_element2); 44 ASSERT(m_atChild->parentNode() == m_element2);
45 } 45 }
46 46
47 void SplitElementCommand::executeApply() 47 void SplitElementCommand::executeApply()
48 { 48 {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 #ifndef NDEBUG 110 #ifndef NDEBUG
111 void SplitElementCommand::getNodesInCommand(HashSet<Node*>& nodes) 111 void SplitElementCommand::getNodesInCommand(HashSet<Node*>& nodes)
112 { 112 {
113 addNodeAndDescendants(m_element1.get(), nodes); 113 addNodeAndDescendants(m_element1.get(), nodes);
114 addNodeAndDescendants(m_element2.get(), nodes); 114 addNodeAndDescendants(m_element2.get(), nodes);
115 addNodeAndDescendants(m_atChild.get(), nodes); 115 addNodeAndDescendants(m_atChild.get(), nodes);
116 } 116 }
117 #endif 117 #endif
118 118
119 } // namespace WebCore 119 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/editing/SpellingCorrectionCommand.cpp ('k') | Source/core/editing/SplitTextNodeCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698