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

Unified Diff: Source/core/css/PseudoStyleRequest.h

Issue 951453003: Rename rendering/RenderScrollbar* to layout/LayoutScrollbar* (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/core.gypi ('k') | Source/core/css/SelectorChecker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/PseudoStyleRequest.h
diff --git a/Source/core/css/PseudoStyleRequest.h b/Source/core/css/PseudoStyleRequest.h
index c14ad02acf633fd7c935dbf7b5cd69dc4bce995f..c31e716026b59eacf327803f638eb7f756e52e2a 100644
--- a/Source/core/css/PseudoStyleRequest.h
+++ b/Source/core/css/PseudoStyleRequest.h
@@ -27,7 +27,7 @@
namespace blink {
-class RenderScrollbar;
+class LayoutScrollbar;
class LayoutStyle;
class PseudoStyleRequest {
@@ -35,7 +35,7 @@ public:
enum RequestType { ForRenderer, ForComputedStyle };
- PseudoStyleRequest(PseudoId pseudoId, RenderScrollbar* scrollbar = 0, ScrollbarPart scrollbarPart = NoPart)
+ PseudoStyleRequest(PseudoId pseudoId, LayoutScrollbar* scrollbar = 0, ScrollbarPart scrollbarPart = NoPart)
: pseudoId(pseudoId)
, type(ForRenderer)
, scrollbarPart(scrollbarPart)
@@ -60,7 +60,7 @@ public:
PseudoId pseudoId;
RequestType type;
ScrollbarPart scrollbarPart;
- RenderScrollbar* scrollbar;
+ LayoutScrollbar* scrollbar;
};
} // namespace blink
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/SelectorChecker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698