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

Side by Side Diff: ppapi/host/dispatch_host_message.h

Issue 600213002: Instrumenting OnExtensionAddListener observer invocation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: brettw@ comment Created 6 years, 2 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
« no previous file with comments | « ipc/ipc_message_macros.h ('k') | ppapi/proxy/dispatch_reply_message.h » ('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 // This file provides infrastructure for dispatching host resource call 5 // This file provides infrastructure for dispatching host resource call
6 // messages. Normal IPC message handlers can't take extra parameters or 6 // messages. Normal IPC message handlers can't take extra parameters or
7 // return values. We want to take a HostMessageContext as a parameter and 7 // return values. We want to take a HostMessageContext as a parameter and
8 // also return the int32_t return value to the caller. 8 // also return the int32_t return value to the caller.
9 9
10 #ifndef PPAPI_HOST_DISPATCH_HOST_MESSAGE_H_ 10 #ifndef PPAPI_HOST_DISPATCH_HOST_MESSAGE_H_
11 #define PPAPI_HOST_DISPATCH_HOST_MESSAGE_H_ 11 #define PPAPI_HOST_DISPATCH_HOST_MESSAGE_H_
12 12
13 #include "base/profiler/scoped_profile.h" // For TRACK_RUN_IN_IPC_HANDLER. 13 #include "base/profiler/scoped_profile.h"
14 #include "ipc/ipc_message_macros.h" 14 #include "ipc/ipc_message_macros.h"
15 #include "ppapi/c/pp_errors.h" 15 #include "ppapi/c/pp_errors.h"
16 16
17 namespace ppapi { 17 namespace ppapi {
18 namespace host { 18 namespace host {
19 19
20 struct HostMessageContext; 20 struct HostMessageContext;
21 21
22 template <class ObjT, class Method> 22 template <class ObjT, class Method>
23 inline int32_t DispatchResourceCall(ObjT* obj, Method method, 23 inline int32_t DispatchResourceCall(ObjT* obj, Method method,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 HostMessageContext* context, 59 HostMessageContext* context,
60 Tuple5<A, B, C, D, E>& arg) { 60 Tuple5<A, B, C, D, E>& arg) {
61 return (obj->*method)(context, arg.a, arg.b, arg.c, arg.d, arg.e); 61 return (obj->*method)(context, arg.a, arg.b, arg.c, arg.d, arg.e);
62 } 62 }
63 63
64 // Note that this only works for message with 1 or more parameters. For 64 // Note that this only works for message with 1 or more parameters. For
65 // 0-parameter messages you need to use the _0 version below (since there are 65 // 0-parameter messages you need to use the _0 version below (since there are
66 // no params in the message). 66 // no params in the message).
67 #define PPAPI_DISPATCH_HOST_RESOURCE_CALL(msg_class, member_func) \ 67 #define PPAPI_DISPATCH_HOST_RESOURCE_CALL(msg_class, member_func) \
68 case msg_class::ID: { \ 68 case msg_class::ID: { \
69 TRACK_RUN_IN_IPC_HANDLER(member_func); \ 69 TRACK_RUN_IN_THIS_SCOPED_REGION(member_func); \
70 msg_class::Schema::Param p; \ 70 msg_class::Schema::Param p; \
71 if (msg_class::Read(&ipc_message__, &p)) { \ 71 if (msg_class::Read(&ipc_message__, &p)) { \
72 return ppapi::host::DispatchResourceCall( \ 72 return ppapi::host::DispatchResourceCall( \
73 this, \ 73 this, \
74 &_IpcMessageHandlerClass::member_func, \ 74 &_IpcMessageHandlerClass::member_func, \
75 context, p); \ 75 context, p); \
76 } \ 76 } \
77 return PP_ERROR_FAILED; \ 77 return PP_ERROR_FAILED; \
78 } 78 }
79 79
80 #define PPAPI_DISPATCH_HOST_RESOURCE_CALL_0(msg_class, member_func) \ 80 #define PPAPI_DISPATCH_HOST_RESOURCE_CALL_0(msg_class, member_func) \
81 case msg_class::ID: { \ 81 case msg_class::ID: { \
82 TRACK_RUN_IN_IPC_HANDLER(member_func); \ 82 TRACK_RUN_IN_THIS_SCOPED_REGION(member_func); \
83 return member_func(context); \ 83 return member_func(context); \
84 } 84 }
85 85
86 } // namespace host 86 } // namespace host
87 } // namespace ppapi 87 } // namespace ppapi
88 88
89 #endif // PPAPI_HOST_DISPATCH_HOST_MESSAGE_H_ 89 #endif // PPAPI_HOST_DISPATCH_HOST_MESSAGE_H_
OLDNEW
« no previous file with comments | « ipc/ipc_message_macros.h ('k') | ppapi/proxy/dispatch_reply_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698