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

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

Issue 7034052: Linux/CrOS smooth scrolling support - behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) 320 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled)
321 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) 321 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled)
322 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) 322 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled)
323 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) 323 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled)
324 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) 324 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled)
325 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) 325 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled)
326 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) 326 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled)
327 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) 327 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled)
328 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) 328 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content)
329 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) 329 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content)
330 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator)
330 IPC_STRUCT_TRAITS_END() 331 IPC_STRUCT_TRAITS_END()
331 332
332 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) 333 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem)
333 IPC_STRUCT_TRAITS_MEMBER(label) 334 IPC_STRUCT_TRAITS_MEMBER(label)
334 IPC_STRUCT_TRAITS_MEMBER(type) 335 IPC_STRUCT_TRAITS_MEMBER(type)
335 IPC_STRUCT_TRAITS_MEMBER(action) 336 IPC_STRUCT_TRAITS_MEMBER(action)
336 IPC_STRUCT_TRAITS_MEMBER(rtl) 337 IPC_STRUCT_TRAITS_MEMBER(rtl)
337 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) 338 IPC_STRUCT_TRAITS_MEMBER(has_directional_override)
338 IPC_STRUCT_TRAITS_MEMBER(enabled) 339 IPC_STRUCT_TRAITS_MEMBER(enabled)
339 IPC_STRUCT_TRAITS_MEMBER(checked) 340 IPC_STRUCT_TRAITS_MEMBER(checked)
(...skipping 1610 matching lines...) Expand 10 before | Expand all | Expand 10 after
1950 std::string /* value */) 1951 std::string /* value */)
1951 1952
1952 // Send back a string to be recorded by UserMetrics. 1953 // Send back a string to be recorded by UserMetrics.
1953 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, 1954 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
1954 std::string /* action */) 1955 std::string /* action */)
1955 1956
1956 // Provide the browser process with current renderer framerate. 1957 // Provide the browser process with current renderer framerate.
1957 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, 1958 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS,
1958 int /* routing id */, 1959 int /* routing id */,
1959 float /* frames per second */) 1960 float /* frames per second */)
1960
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698