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

Unified Diff: content/common/view_messages.h

Issue 63203003: Have Blink be told of scrollbar changes rather than paying attention itself (Chromium side). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: stylin' Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 356d33f4e10f18ad3f6378e3b1a232ffb282eeff..2775f414643dd56afddaefc5c552ae3c419fc5bc 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -1285,9 +1285,20 @@ IPC_MESSAGE_ROUTED3(ViewMsg_WindowSnapshotCompleted,
gfx::Size /* size */,
std::vector<unsigned char> /* png */)
+#if defined(OS_ANDROID)
// Tells the renderer to suspend/resume the webkit timers.
IPC_MESSAGE_CONTROL1(ViewMsg_SetWebKitSharedTimersSuspended,
bool /* suspend */)
+#endif
+
+#if defined(OS_MACOSX)
+// Notification of a change in scrollbar appearance and/or behavior.
+IPC_MESSAGE_CONTROL4(ViewMsg_UpdateScrollbarTheme,
+ float /* initial_button_delay */,
+ float /* autoscroll_button_delay */,
+ bool /* jump_on_track_click */,
+ bool /* redraw */)
+#endif
#if defined(OS_ANDROID)
// Sent when the browser wants the bounding boxes of the current find matches.

Powered by Google App Engine
This is Rietveld 408576698