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

Unified Diff: Source/core/rendering/style/RenderStyleConstants.h

Issue 784453003: Initial scroll-blocks-on compositor integration (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Eliminate scrollbars from iframe test for cross-platform output consistency Created 5 years, 11 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
Index: Source/core/rendering/style/RenderStyleConstants.h
diff --git a/Source/core/rendering/style/RenderStyleConstants.h b/Source/core/rendering/style/RenderStyleConstants.h
index 81e52cf2b667074151abc3dc7bb5162a060a08d5..3b58142078cbc18d7a237dbfb9e8112e7b6a3f84 100644
--- a/Source/core/rendering/style/RenderStyleConstants.h
+++ b/Source/core/rendering/style/RenderStyleConstants.h
@@ -505,17 +505,6 @@ inline TouchAction& operator&= (TouchAction& a, TouchAction b) { return a = a &
enum EIsolation { IsolationAuto, IsolationIsolate };
-enum ScrollBlocksOn {
- ScrollBlocksOnNone = 0x0,
- ScrollBlocksOnStartTouch = 0x1,
- ScrollBlocksOnWheelEvent = 0x2,
- ScrollBlocksOnScrollEvent = 0x4,
-};
-inline ScrollBlocksOn operator| (ScrollBlocksOn a, ScrollBlocksOn b) { return ScrollBlocksOn(int(a) | int(b)); }
-inline ScrollBlocksOn& operator|= (ScrollBlocksOn& a, ScrollBlocksOn b) { return a = a | b; }
-inline ScrollBlocksOn operator& (ScrollBlocksOn a, ScrollBlocksOn b) { return ScrollBlocksOn(int(a) & int(b)); }
-inline ScrollBlocksOn& operator&= (ScrollBlocksOn& a, ScrollBlocksOn b) { return a = a & b; }
-
enum ItemPosition {
ItemPositionAuto,
ItemPositionStretch,

Powered by Google App Engine
This is Rietveld 408576698