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

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

Issue 10916279: Chromium compositor change implementing page-scale driven pinch-zoom. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Change m_unpinchedViewportSize and remove unnecessary >1 page scale clamping. Created 8 years, 2 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) 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 "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 IPC_STRUCT_TRAITS_MEMBER(device_supports_touch) 226 IPC_STRUCT_TRAITS_MEMBER(device_supports_touch)
227 IPC_STRUCT_TRAITS_MEMBER(device_supports_mouse) 227 IPC_STRUCT_TRAITS_MEMBER(device_supports_mouse)
228 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) 228 IPC_STRUCT_TRAITS_MEMBER(default_tile_width)
229 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) 229 IPC_STRUCT_TRAITS_MEMBER(default_tile_height)
230 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) 230 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width)
231 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) 231 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height)
232 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context) 232 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context)
233 IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_enabled) 233 IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_enabled)
234 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) 234 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores)
235 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) 235 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled)
236 IPC_STRUCT_TRAITS_MEMBER(apply_page_scale_factor_in_compositor)
236 IPC_STRUCT_TRAITS_END() 237 IPC_STRUCT_TRAITS_END()
237 238
238 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) 239 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem)
239 IPC_STRUCT_TRAITS_MEMBER(label) 240 IPC_STRUCT_TRAITS_MEMBER(label)
240 IPC_STRUCT_TRAITS_MEMBER(toolTip) 241 IPC_STRUCT_TRAITS_MEMBER(toolTip)
241 IPC_STRUCT_TRAITS_MEMBER(type) 242 IPC_STRUCT_TRAITS_MEMBER(type)
242 IPC_STRUCT_TRAITS_MEMBER(action) 243 IPC_STRUCT_TRAITS_MEMBER(action)
243 IPC_STRUCT_TRAITS_MEMBER(rtl) 244 IPC_STRUCT_TRAITS_MEMBER(rtl)
244 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) 245 IPC_STRUCT_TRAITS_MEMBER(has_directional_override)
245 IPC_STRUCT_TRAITS_MEMBER(enabled) 246 IPC_STRUCT_TRAITS_MEMBER(enabled)
(...skipping 2219 matching lines...) Expand 10 before | Expand all | Expand 10 after
2465 2466
2466 // Perform a seek. 2467 // Perform a seek.
2467 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, 2468 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek,
2468 int /* player_id */, 2469 int /* player_id */,
2469 base::TimeDelta /* time */) 2470 base::TimeDelta /* time */)
2470 2471
2471 // Start the player for playback. 2472 // Start the player for playback.
2472 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, 2473 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart,
2473 int /* player_id */) 2474 int /* player_id */)
2474 #endif 2475 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698