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

Unified Diff: third_party/WebKit/Source/core/editing/VisibleUnitsLine.cpp

Issue 2945783002: Get rid of redundant default parameter from NextLeafWithSameEditability() (Closed)
Patch Set: 2017-06-19T17:20:50 Created 3 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/VisibleUnitsLine.cpp
diff --git a/third_party/WebKit/Source/core/editing/VisibleUnitsLine.cpp b/third_party/WebKit/Source/core/editing/VisibleUnitsLine.cpp
index f882fb7341efbdd6da6bca6eb2251cfd40f0998f..bd55dccd95ced224597f1a8be6bcbeb701f601cb 100644
--- a/third_party/WebKit/Source/core/editing/VisibleUnitsLine.cpp
+++ b/third_party/WebKit/Source/core/editing/VisibleUnitsLine.cpp
@@ -95,9 +95,7 @@ Node* PreviousLeafWithSameEditability(Node* node, EditableType editable_type) {
return nullptr;
}
-Node* NextLeafWithSameEditability(
- Node* node,
- EditableType editable_type = kContentIsEditable) {
+Node* NextLeafWithSameEditability(Node* node, EditableType editable_type) {
if (!node)
return nullptr;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698