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

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: Previous patch accidentally lost new files 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
« no previous file with comments | « content/browser/theme_helper_mac.mm ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 IPC_STRUCT_MEMBER(gfx::Size, max_size) 546 IPC_STRUCT_MEMBER(gfx::Size, max_size)
547 IPC_STRUCT_END() 547 IPC_STRUCT_END()
548 548
549 #if defined(OS_MACOSX) 549 #if defined(OS_MACOSX)
550 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) 550 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params)
551 IPC_STRUCT_MEMBER(float, initial_button_delay) 551 IPC_STRUCT_MEMBER(float, initial_button_delay)
552 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) 552 IPC_STRUCT_MEMBER(float, autoscroll_button_delay)
553 IPC_STRUCT_MEMBER(bool, jump_on_track_click) 553 IPC_STRUCT_MEMBER(bool, jump_on_track_click)
554 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) 554 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style)
555 IPC_STRUCT_MEMBER(bool, redraw) 555 IPC_STRUCT_MEMBER(bool, redraw)
556 IPC_STRUCT_MEMBER(bool, scroll_animation_enabled)
557 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) 556 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement)
558 IPC_STRUCT_END() 557 IPC_STRUCT_END()
559 #endif 558 #endif
560 559
561 // Messages sent from the browser to the renderer. 560 // Messages sent from the browser to the renderer.
562 561
563 #if defined(OS_ANDROID) 562 #if defined(OS_ANDROID)
564 // Tells the renderer to cancel an opened date/time dialog. 563 // Tells the renderer to cancel an opened date/time dialog.
565 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog) 564 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog)
566 565
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 // Instructs the browser to start plugin IME. 1334 // Instructs the browser to start plugin IME.
1336 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) 1335 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme)
1337 1336
1338 // Receives content of a web page as plain text. 1337 // Receives content of a web page as plain text.
1339 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 1338 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
1340 #endif 1339 #endif
1341 1340
1342 // Adding a new message? Stick to the sort order above: first platform 1341 // Adding a new message? Stick to the sort order above: first platform
1343 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1342 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1344 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1343 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/browser/theme_helper_mac.mm ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698