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

Unified Diff: Source/core/editing/DeleteSelectionCommand.h

Issue 420053002: Use tighter typing in editing: DeleteSelectionCommand (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/editing/CompositeEditCommand.cpp ('k') | Source/core/editing/DeleteSelectionCommand.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/DeleteSelectionCommand.h
diff --git a/Source/core/editing/DeleteSelectionCommand.h b/Source/core/editing/DeleteSelectionCommand.h
index 6ebcb4f25a99f6f27640ced6b9c45e4781730800..44d2f966f157f9752a40c0684560998ae8dc24e1 100644
--- a/Source/core/editing/DeleteSelectionCommand.h
+++ b/Source/core/editing/DeleteSelectionCommand.h
@@ -31,6 +31,7 @@
namespace blink {
class EditingStyle;
+class HTMLTableRowElement;
class DeleteSelectionCommand FINAL : public CompositeEditCommand {
public:
@@ -92,10 +93,10 @@ private:
RefPtrWillBeMember<Node> m_endBlock;
RefPtrWillBeMember<EditingStyle> m_typingStyle;
RefPtrWillBeMember<EditingStyle> m_deleteIntoBlockquoteStyle;
- RefPtrWillBeMember<Node> m_startRoot;
- RefPtrWillBeMember<Node> m_endRoot;
- RefPtrWillBeMember<Node> m_startTableRow;
- RefPtrWillBeMember<Node> m_endTableRow;
+ RefPtrWillBeMember<Element> m_startRoot;
+ RefPtrWillBeMember<Element> m_endRoot;
+ RefPtrWillBeMember<HTMLTableRowElement> m_startTableRow;
+ RefPtrWillBeMember<HTMLTableRowElement> m_endTableRow;
RefPtrWillBeMember<Node> m_temporaryPlaceholder;
};
« no previous file with comments | « Source/core/editing/CompositeEditCommand.cpp ('k') | Source/core/editing/DeleteSelectionCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698