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

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

Issue 200613003: ReplaceSelectionCommand::makeInsertedContentRoundTrippableWithHTMLTreeBuilder should take a const r… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | Source/core/editing/ReplaceSelectionCommand.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 bool shouldMergeStart(bool, bool, bool); 82 bool shouldMergeStart(bool, bool, bool);
83 bool shouldMergeEnd(bool selectionEndWasEndOfParagraph); 83 bool shouldMergeEnd(bool selectionEndWasEndOfParagraph);
84 bool shouldMerge(const VisiblePosition&, const VisiblePosition&); 84 bool shouldMerge(const VisiblePosition&, const VisiblePosition&);
85 85
86 void mergeEndIfNeeded(); 86 void mergeEndIfNeeded();
87 87
88 void removeUnrenderedTextNodesAtEnds(InsertedNodes&); 88 void removeUnrenderedTextNodesAtEnds(InsertedNodes&);
89 89
90 void removeRedundantStylesAndKeepStyleSpanInline(InsertedNodes&); 90 void removeRedundantStylesAndKeepStyleSpanInline(InsertedNodes&);
91 void makeInsertedContentRoundTrippableWithHTMLTreeBuilder(InsertedNodes&); 91 void makeInsertedContentRoundTrippableWithHTMLTreeBuilder(const InsertedNode s&);
92 void moveNodeOutOfAncestor(PassRefPtr<Node>, PassRefPtr<Node> ancestor); 92 void moveNodeOutOfAncestor(PassRefPtr<Node>, PassRefPtr<Node> ancestor);
93 void handleStyleSpans(InsertedNodes&); 93 void handleStyleSpans(InsertedNodes&);
94 94
95 VisiblePosition positionAtStartOfInsertedContent() const; 95 VisiblePosition positionAtStartOfInsertedContent() const;
96 VisiblePosition positionAtEndOfInsertedContent() const; 96 VisiblePosition positionAtEndOfInsertedContent() const;
97 97
98 bool shouldPerformSmartReplace() const; 98 bool shouldPerformSmartReplace() const;
99 void addSpacesForSmartReplace(); 99 void addSpacesForSmartReplace();
100 void completeHTMLReplacement(const Position& lastPositionToSelect); 100 void completeHTMLReplacement(const Position& lastPositionToSelect);
101 void mergeTextNodesAroundPosition(Position&, Position& positionOnlyToBeUpdat ed); 101 void mergeTextNodesAroundPosition(Position&, Position& positionOnlyToBeUpdat ed);
(...skipping 10 matching lines...) Expand all
112 bool m_preventNesting; 112 bool m_preventNesting;
113 bool m_movingParagraph; 113 bool m_movingParagraph;
114 EditAction m_editAction; 114 EditAction m_editAction;
115 bool m_sanitizeFragment; 115 bool m_sanitizeFragment;
116 bool m_shouldMergeEnd; 116 bool m_shouldMergeEnd;
117 }; 117 };
118 118
119 } // namespace WebCore 119 } // namespace WebCore
120 120
121 #endif // ReplaceSelectionCommand_h 121 #endif // ReplaceSelectionCommand_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/editing/ReplaceSelectionCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698