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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/Document.cpp ('k') | Source/core/dom/Element.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 22f70518df6103afd4d361c3984a1d2c80ba9eba..7f29fa0a7e629077341d5ad93358f940bfde102b 100644
--- a/Source/core/dom/DocumentMarkerController.cpp
+++ b/Source/core/dom/DocumentMarkerController.cpp
@@ -33,7 +33,7 @@
#include "core/dom/RenderedDocumentMarker.h"
#include "core/dom/Text.h"
#include "core/editing/iterators/TextIterator.h"
-#include "core/rendering/RenderObject.h"
+#include "core/layout/LayoutObject.h"
#ifndef NDEBUG
#include <stdio.h>
@@ -573,7 +573,7 @@ void DocumentMarkerController::removeMarkersFromList(MarkerMap::iterator iterato
}
if (needsRepainting) {
- if (RenderObject* renderer = iterator->key->renderer())
+ if (LayoutObject* renderer = iterator->key->renderer())
renderer->setShouldDoFullPaintInvalidation();
}
@@ -603,7 +603,7 @@ void DocumentMarkerController::repaintMarkers(DocumentMarker::MarkerTypes marker
continue;
// cause the node to be redrawn
- if (RenderObject* renderer = node->renderer()) {
+ if (LayoutObject* renderer = node->renderer()) {
renderer->setShouldDoFullPaintInvalidation();
break;
}
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698