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

Unified Diff: Source/web/painting/PaintAggregator.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/web/painting/ContinuousPainter.cpp ('k') | Source/web/painting/PaintAggregator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/painting/PaintAggregator.h
diff --git a/Source/web/painting/PaintAggregator.h b/Source/web/painting/PaintAggregator.h
index 9d63c8f3d85da95c3ec1537089a3cd223147afdb..5b3f7fc8bbc0b81f9324059ee884517675fb5ec9 100644
--- a/Source/web/painting/PaintAggregator.h
+++ b/Source/web/painting/PaintAggregator.h
@@ -54,14 +54,14 @@ public:
// Returns the rect damaged by scrolling within |scrollRect| by
// |scrollDelta|. This rect must be repainted.
- WebCore::IntRect calculateScrollDamage() const;
+ blink::IntRect calculateScrollDamage() const;
// Returns the smallest rect containing all paint rects.
- WebCore::IntRect calculatePaintBounds() const;
+ blink::IntRect calculatePaintBounds() const;
- WebCore::IntPoint scrollDelta;
- WebCore::IntRect scrollRect;
- WTF::Vector<WebCore::IntRect> paintRects;
+ blink::IntPoint scrollDelta;
+ blink::IntRect scrollRect;
+ WTF::Vector<blink::IntRect> paintRects;
};
// There is a PendingUpdate if invalidateRect or scrollRect were called and
@@ -73,14 +73,14 @@ public:
void popPendingUpdate(PendingUpdate*);
// The given rect should be repainted.
- void invalidateRect(const WebCore::IntRect&);
+ void invalidateRect(const blink::IntRect&);
// The given rect should be scrolled by the given amounts.
- void scrollRect(int dx, int dy, const WebCore::IntRect& clipRect);
+ void scrollRect(int dx, int dy, const blink::IntRect& clipRect);
private:
- WebCore::IntRect scrollPaintRect(const WebCore::IntRect& paintRect, int dx, int dy) const;
- bool shouldInvalidateScrollRect(const WebCore::IntRect&) const;
+ blink::IntRect scrollPaintRect(const blink::IntRect& paintRect, int dx, int dy) const;
+ bool shouldInvalidateScrollRect(const blink::IntRect&) const;
void invalidateScrollRect();
void combinePaintRects();
« no previous file with comments | « Source/web/painting/ContinuousPainter.cpp ('k') | Source/web/painting/PaintAggregator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698