| Index: chrome/browser/tab_contents/tab_contents_view_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents_view_gtk.cc (revision 19223)
|
| +++ chrome/browser/tab_contents/tab_contents_view_gtk.cc (working copy)
|
| @@ -76,10 +76,10 @@
|
| if ((event->state & gtk_accelerator_get_default_mod_mask()) ==
|
| GDK_CONTROL_MASK) {
|
| if (event->direction == GDK_SCROLL_DOWN) {
|
| - tab_contents->delegate()->ContentsZoomChange(false);
|
| + tab_contents->delegate()->ContentsZoomChange(PageZoom::SMALLER);
|
| return TRUE;
|
| } else if (event->direction == GDK_SCROLL_UP) {
|
| - tab_contents->delegate()->ContentsZoomChange(true);
|
| + tab_contents->delegate()->ContentsZoomChange(PageZoom::LARGER);
|
| return TRUE;
|
| }
|
| }
|
|
|