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

Unified Diff: Source/core/dom/DocumentMarkerController.cpp

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 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/dom/DocumentMarker.cpp ('k') | Source/core/dom/DocumentTiming.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentMarkerController.cpp
diff --git a/Source/core/dom/DocumentMarkerController.cpp b/Source/core/dom/DocumentMarkerController.cpp
index 0928c3d3c685022523bd281e04f8353c05a63e3d..c47e8b802b5b1fe889e6f36fcc8eef24e669296e 100644
--- a/Source/core/dom/DocumentMarkerController.cpp
+++ b/Source/core/dom/DocumentMarkerController.cpp
@@ -136,7 +136,7 @@ void DocumentMarkerController::removeMarkers(Range* range, DocumentMarker::Marke
// Markers are stored in order sorted by their start offset.
// Markers of the same type do not overlap each other.
-void DocumentMarkerController::addMarker(Node* node, const DocumentMarker& newMarker)
+void DocumentMarkerController::addMarker(Node* node, const DocumentMarker& newMarker)
{
ASSERT(newMarker.endOffset() >= newMarker.startOffset());
if (newMarker.endOffset() == newMarker.startOffset())
@@ -436,7 +436,7 @@ void DocumentMarkerController::removeMarkers(Node* node, DocumentMarker::MarkerT
if (!possiblyHasMarkers(markerTypes))
return;
ASSERT(!m_markers.isEmpty());
-
+
MarkerMap::iterator iterator = m_markers.find(node);
if (iterator != m_markers.end())
removeMarkersFromList(iterator, markerTypes);
« no previous file with comments | « Source/core/dom/DocumentMarker.cpp ('k') | Source/core/dom/DocumentTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698