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/shell/common/shell_messages.h

Issue 142043010: Modify the format output when a DOM-object leak is detected (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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/shell/common/leak_detection_result.h ('k') | content/shell/renderer/leak_detector.cc » ('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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "content/public/common/common_param_traits.h" 9 #include "content/public/common/common_param_traits.h"
10 #include "content/public/common/page_state.h" 10 #include "content/public/common/page_state.h"
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, 98 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies,
99 bool /* accept */) 99 bool /* accept */)
100 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) 100 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies)
101 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, 101 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor,
102 float /* factor */) 102 float /* factor */)
103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) 103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory)
104 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) 104 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows)
105 105
106 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) 106 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult)
107 IPC_STRUCT_TRAITS_MEMBER(leaked) 107 IPC_STRUCT_TRAITS_MEMBER(leaked)
108 IPC_STRUCT_TRAITS_MEMBER(number_of_live_documents) 108 IPC_STRUCT_TRAITS_MEMBER(detail)
109 IPC_STRUCT_TRAITS_MEMBER(number_of_live_nodes)
110 IPC_STRUCT_TRAITS_END() 109 IPC_STRUCT_TRAITS_END()
111 110
112 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone,
113 content::LeakDetectionResult /* result */) 112 content::LeakDetectionResult /* result */)
OLDNEW
« no previous file with comments | « content/shell/common/leak_detection_result.h ('k') | content/shell/renderer/leak_detector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698