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

Side by Side Diff: content/common/view_messages.h

Issue 1653003002: Make scrollAnimatorEnabled work on Mac like it does on other platforms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 IPC_STRUCT_MEMBER(gfx::Size, max_size) 570 IPC_STRUCT_MEMBER(gfx::Size, max_size)
571 IPC_STRUCT_END() 571 IPC_STRUCT_END()
572 572
573 #if defined(OS_MACOSX) 573 #if defined(OS_MACOSX)
574 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) 574 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params)
575 IPC_STRUCT_MEMBER(float, initial_button_delay) 575 IPC_STRUCT_MEMBER(float, initial_button_delay)
576 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) 576 IPC_STRUCT_MEMBER(float, autoscroll_button_delay)
577 IPC_STRUCT_MEMBER(bool, jump_on_track_click) 577 IPC_STRUCT_MEMBER(bool, jump_on_track_click)
578 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) 578 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style)
579 IPC_STRUCT_MEMBER(bool, redraw) 579 IPC_STRUCT_MEMBER(bool, redraw)
580 IPC_STRUCT_MEMBER(bool, scroll_animation_enabled)
581 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) 580 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement)
582 IPC_STRUCT_END() 581 IPC_STRUCT_END()
583 #endif 582 #endif
584 583
585 // Messages sent from the browser to the renderer. 584 // Messages sent from the browser to the renderer.
586 585
587 #if defined(OS_ANDROID) 586 #if defined(OS_ANDROID)
588 // Tells the renderer to cancel an opened date/time dialog. 587 // Tells the renderer to cancel an opened date/time dialog.
589 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog) 588 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog)
590 589
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 // Instructs the browser to start plugin IME. 1409 // Instructs the browser to start plugin IME.
1411 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) 1410 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme)
1412 1411
1413 // Receives content of a web page as plain text. 1412 // Receives content of a web page as plain text.
1414 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 1413 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
1415 #endif 1414 #endif
1416 1415
1417 // Adding a new message? Stick to the sort order above: first platform 1416 // Adding a new message? Stick to the sort order above: first platform
1418 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1417 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1419 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1418 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698