| Index: webkit/glue/plugins/pepper_scrollbar.cc
|
| ===================================================================
|
| --- webkit/glue/plugins/pepper_scrollbar.cc (revision 51861)
|
| +++ webkit/glue/plugins/pepper_scrollbar.cc (working copy)
|
| @@ -137,11 +137,11 @@
|
| float fmultiplier = 1.0;
|
|
|
| WebScrollbar::ScrollGranularity granularity;
|
| - if (unit == PP_WIDGET_SCROLL_BY_LINE) {
|
| + if (unit == PP_SCROLLBY_LINE) {
|
| granularity = WebScrollbar::ScrollByLine;
|
| - } else if (unit == PP_WIDGET_SCROLL_BY_PAGE) {
|
| + } else if (unit == PP_SCROLLBY_PAGE) {
|
| granularity = WebScrollbar::ScrollByPage;
|
| - } else if (unit == PP_WIDGET_SCROLL_BY_DOCUMENT) {
|
| + } else if (unit == PP_SCROLLBY_DOCUMENT) {
|
| granularity = WebScrollbar::ScrollByDocument;
|
| } else {
|
| granularity = WebScrollbar::ScrollByPixel;
|
|
|