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

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

Issue 1083093004: Removing unnecessary blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: trybot fixing Created 5 years, 8 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/WebNode.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 5b3f7fc8bbc0b81f9324059ee884517675fb5ec9..ab0c3cbe34abbb0106392bd0c47ff77cb1b8c173 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.
- blink::IntRect calculateScrollDamage() const;
+ IntRect calculateScrollDamage() const;
// Returns the smallest rect containing all paint rects.
- blink::IntRect calculatePaintBounds() const;
+ IntRect calculatePaintBounds() const;
- blink::IntPoint scrollDelta;
- blink::IntRect scrollRect;
- WTF::Vector<blink::IntRect> paintRects;
+ IntPoint scrollDelta;
+ IntRect scrollRect;
+ WTF::Vector<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 blink::IntRect&);
+ void invalidateRect(const IntRect&);
// The given rect should be scrolled by the given amounts.
- void scrollRect(int dx, int dy, const blink::IntRect& clipRect);
+ void scrollRect(int dx, int dy, const IntRect& clipRect);
private:
- blink::IntRect scrollPaintRect(const blink::IntRect& paintRect, int dx, int dy) const;
- bool shouldInvalidateScrollRect(const blink::IntRect&) const;
+ IntRect scrollPaintRect(const IntRect& paintRect, int dx, int dy) const;
+ bool shouldInvalidateScrollRect(const IntRect&) const;
void invalidateScrollRect();
void combinePaintRects();
« no previous file with comments | « Source/web/WebNode.cpp ('k') | Source/web/painting/PaintAggregator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698