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

Side by Side Diff: content/shell/common/shell_messages.h

Issue 478483005: Add IPC benchmarking API to Blink TestRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Landing Created 6 years, 4 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
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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 bool /* permission_granted */) 106 bool /* permission_granted */)
107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearWebNotificationPermissions) 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearWebNotificationPermissions)
108 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, 108 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies,
109 bool /* accept */) 109 bool /* accept */)
110 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) 110 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies)
111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor,
112 float /* factor */) 112 float /* factor */)
113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) 113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory)
114 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) 114 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows)
115 115
116 IPC_MESSAGE_CONTROL3(ShellViewHostMsg_EchoPing,
117 int /* routing_id */,
118 int /* id */,
119 std::string /* body */)
120 IPC_MESSAGE_ROUTED2(ShellViewMsg_EchoPong,
121 int /* id */,
122 std::string /* body */)
123
116 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) 124 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult)
117 IPC_STRUCT_TRAITS_MEMBER(leaked) 125 IPC_STRUCT_TRAITS_MEMBER(leaked)
118 IPC_STRUCT_TRAITS_MEMBER(detail) 126 IPC_STRUCT_TRAITS_MEMBER(detail)
119 IPC_STRUCT_TRAITS_END() 127 IPC_STRUCT_TRAITS_END()
120 128
121 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, 129 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone,
122 content::LeakDetectionResult /* result */) 130 content::LeakDetectionResult /* result */)
OLDNEW
« no previous file with comments | « content/shell/browser/shell_content_browser_client.cc ('k') | content/shell/common/shell_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698