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

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

Issue 10908078: Code to collect issue 97285 debugging info for crash reports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase against r155094. 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
« no previous file with comments | « content/common/plugin_messages.h ('k') | content/content_common.gypi » ('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 "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 2329 matching lines...) Expand 10 before | Expand all | Expand 10 after
2340 // custom normalized fractions of the document size. The rects will be sorted by 2340 // custom normalized fractions of the document size. The rects will be sorted by
2341 // frame traversal order starting in the main frame, then by dom order. 2341 // frame traversal order starting in the main frame, then by dom order.
2342 // 2342 //
2343 // |active_rect| will contain the bounding box of the active find-in-page match 2343 // |active_rect| will contain the bounding box of the active find-in-page match
2344 // marker, in similarly normalized coords (or an empty rect if there isn't one). 2344 // marker, in similarly normalized coords (or an empty rect if there isn't one).
2345 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, 2345 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply,
2346 int /* version */, 2346 int /* version */,
2347 std::vector<gfx::RectF> /* rects */, 2347 std::vector<gfx::RectF> /* rects */,
2348 gfx::RectF /* active_rect */) 2348 gfx::RectF /* active_rect */)
2349 #endif 2349 #endif
2350
2351 // Forward client content_debug_logging to the host process's implementation.
2352 IPC_MESSAGE_CONTROL2(ViewHostMsg_ContentDebugRecordMsg,
2353 int /* bug_id */,
2354 std::string /* msg */)
2355 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ContentDebugGetMessages,
2356 int /* bug_id */,
2357 bool /* handled */,
2358 std::vector<std::string> /* msgs */)
OLDNEW
« no previous file with comments | « content/common/plugin_messages.h ('k') | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698