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

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: 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"
(...skipping 2283 matching lines...) Expand 10 before | Expand all | Expand 10 after
2294 // * id - (integer) the frame identifier in this RenderView 2294 // * id - (integer) the frame identifier in this RenderView
2295 // * name - (string) the name of the frame, if one has been assigned 2295 // * name - (string) the name of the frame, if one has been assigned
2296 // * subtree - an array of the same type of objects for each frame that is a 2296 // * subtree - an array of the same type of objects for each frame that is a
2297 // direct child of the current frame. This property can be omitted if 2297 // direct child of the current frame. This property can be omitted if
2298 // there are no direct child frames, so less data is transferred. 2298 // there are no direct child frames, so less data is transferred.
2299 // 2299 //
2300 // This message must be sent on any events that modify the tree structure or 2300 // This message must be sent on any events that modify the tree structure or
2301 // the names of any frames. 2301 // the names of any frames.
2302 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameTreeUpdated, 2302 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameTreeUpdated,
2303 std::string /* json encoded frame tree */) 2303 std::string /* json encoded frame tree */)
2304
2305 // Forward client content_debug_logging to the host process's implementation.
2306 IPC_MESSAGE_CONTROL2(ViewHostMsg_RecordMsg,
2307 int /* bug_id */,
2308 std::string /* msg */)
2309 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetMessages,
2310 int /* bug_id */,
2311 std::vector<std::string> /* msgs */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698