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

Side by Side Diff: Source/core/editing/ReplaceNodeWithSpanCommand.h

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) 2009 Google Inc. All rights reserved. 2 * Copyright (c) 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 47
48 HTMLElement* spanElement() { return m_spanElement.get(); } 48 HTMLElement* spanElement() { return m_spanElement.get(); }
49 49
50 private: 50 private:
51 explicit ReplaceNodeWithSpanCommand(PassRefPtr<HTMLElement>); 51 explicit ReplaceNodeWithSpanCommand(PassRefPtr<HTMLElement>);
52 52
53 virtual void doApply() OVERRIDE; 53 virtual void doApply() OVERRIDE;
54 virtual void doUnapply() OVERRIDE; 54 virtual void doUnapply() OVERRIDE;
55 55
56 #ifndef NDEBUG
57 virtual void getNodesInCommand(HashSet<Node*>&) OVERRIDE;
58 #endif
59
60 RefPtr<HTMLElement> m_elementToReplace; 56 RefPtr<HTMLElement> m_elementToReplace;
61 RefPtr<HTMLElement> m_spanElement; 57 RefPtr<HTMLElement> m_spanElement;
62 }; 58 };
63 59
64 } // namespace WebCore 60 } // namespace WebCore
65 61
66 #endif // ReplaceNodeWithSpanCommand 62 #endif // ReplaceNodeWithSpanCommand
OLDNEW
« no previous file with comments | « Source/core/editing/RemoveNodeCommand.cpp ('k') | Source/core/editing/ReplaceNodeWithSpanCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698