< prev index next >

modules/javafx.web/src/main/java/com/sun/javafx/webkit/drt/DumpRenderTree.java

Print this page
rev 10218 : 8132675: VBox.setVgrow and HBox.setHgrow corrupt following controls when window resized
rev 10208 : 8166999: Update to newer version of WebKit
Summary: Merge with WebKit trunk r197500
Reviewed-by: ghb, arajkumar, asrivastava
Contributed-by: a.ankit.srivastava@oracle.com, arunprasad.rajkumar@oracle.com, guru.hb@oracle.com, murali.billa@oracle.com
rev 10087 : 8164177: Update copyright header for files modified in 2016
Reviewed-by: ckyang
rev 9951 : 8161705: Rename directories under modules to exactly match the module names
Reviewed-by: kcr, vadim

@@ -126,31 +126,31 @@
         @Override
         public void paint(WCGraphicsContext g, Ref sbRef, int x, int y, int pressedPart, int hoveredPart) {
         }
 
         @Override
-        protected int hitTest(int w, int h, int orientation, int value, int visibleSize, int totalSize, int x, int y) {
+        protected int hitTest(long id, int x, int y) {
             return 0;
         }
 
         @Override
-        protected int getThumbPosition(int w, int h, int orientation, int value, int visibleSize, int totalSize) {
+        protected int getThumbPosition(long id) {
             return 0;
         }
 
         @Override
-        protected int getThumbLength(int w, int h, int orientation, int value, int visibleSize, int totalSize) {
+        protected int getThumbLength(long id) {
             return 0;
         }
 
         @Override
-        protected int getTrackPosition(int w, int h, int orientation) {
+        protected int getTrackPosition(long id) {
             return 0;
         }
 
         @Override
-        protected int getTrackLength(int w, int h, int orientation) {
+        protected int getTrackLength(long id) {
             return 0;
         }
 
         @Override
         public WCSize getWidgetSize(Ref widget) {
< prev index next >