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

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

Issue 23739003: Remove getNodesInCommand debug method from Editing commands (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 } 57 }
58 58
59 void InsertNodeBeforeCommand::doUnapply() 59 void InsertNodeBeforeCommand::doUnapply()
60 { 60 {
61 if (!m_insertChild->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable )) 61 if (!m_insertChild->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable ))
62 return; 62 return;
63 63
64 m_insertChild->remove(IGNORE_EXCEPTION); 64 m_insertChild->remove(IGNORE_EXCEPTION);
65 } 65 }
66 66
67 #ifndef NDEBUG
68 void InsertNodeBeforeCommand::getNodesInCommand(HashSet<Node*>& nodes)
69 {
70 addNodeAndDescendants(m_insertChild.get(), nodes);
71 addNodeAndDescendants(m_refChild.get(), nodes);
72 } 67 }
73 #endif
74
75 }
OLDNEW
« no previous file with comments | « Source/core/editing/InsertNodeBeforeCommand.h ('k') | Source/core/editing/MergeIdenticalElementsCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698