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

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

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct base Created 8 years, 3 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"
11 #include "content/common/css_colors.h" 11 #include "content/common/css_colors.h"
12 #include "content/common/edit_command.h" 12 #include "content/common/edit_command.h"
13 #include "content/common/navigation_gesture.h" 13 #include "content/common/navigation_gesture.h"
14 #include "content/common/view_message_enums.h" 14 #include "content/common/view_message_enums.h"
15 #include "content/common/gpu/client/cc_param_traits.h"
15 #include "content/public/common/common_param_traits.h" 16 #include "content/public/common/common_param_traits.h"
16 #include "content/public/common/context_menu_params.h" 17 #include "content/public/common/context_menu_params.h"
17 #include "content/public/common/file_chooser_params.h" 18 #include "content/public/common/file_chooser_params.h"
18 #include "content/public/common/frame_navigate_params.h" 19 #include "content/public/common/frame_navigate_params.h"
19 #include "content/public/common/javascript_message_type.h" 20 #include "content/public/common/javascript_message_type.h"
20 #include "content/public/common/page_zoom.h" 21 #include "content/public/common/page_zoom.h"
21 #include "content/public/common/referrer.h" 22 #include "content/public/common/referrer.h"
22 #include "content/public/common/renderer_preferences.h" 23 #include "content/public/common/renderer_preferences.h"
23 #include "content/public/common/stop_find_action.h" 24 #include "content/public/common/stop_find_action.h"
24 #include "content/public/common/webkit_param_traits.h" 25 #include "content/public/common/webkit_param_traits.h"
(...skipping 2316 matching lines...) Expand 10 before | Expand all | Expand 10 after
2341 // custom normalized fractions of the document size. The rects will be sorted by 2342 // custom normalized fractions of the document size. The rects will be sorted by
2342 // frame traversal order starting in the main frame, then by dom order. 2343 // frame traversal order starting in the main frame, then by dom order.
2343 // 2344 //
2344 // |active_rect| will contain the bounding box of the active find-in-page match 2345 // |active_rect| will contain the bounding box of the active find-in-page match
2345 // marker, in similarly normalized coords (or an empty rect if there isn't one). 2346 // marker, in similarly normalized coords (or an empty rect if there isn't one).
2346 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, 2347 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply,
2347 int /* version */, 2348 int /* version */,
2348 std::vector<gfx::RectF> /* rects */, 2349 std::vector<gfx::RectF> /* rects */,
2349 gfx::RectF /* active_rect */) 2350 gfx::RectF /* active_rect */)
2350 #endif 2351 #endif
2352
2353 IPC_MESSAGE_ROUTED1(ViewHostMsg_SwapCompositorFrame,
2354 WebKit::WebCompositorFrame /* frame */)
2355 IPC_MESSAGE_ROUTED1(ViewMsg_SwapCompositorFrameACK,
2356 WebKit::WebCompositorFrameAck /* ack */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698