diff options
author | elijahtaylor@chromium.org <elijahtaylor@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-04 23:37:45 +0000 |
---|---|---|
committer | elijahtaylor@chromium.org <elijahtaylor@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-04 23:37:45 +0000 |
commit | 8c43efaf1ed7bfeb03903aaae059873edd57b246 (patch) | |
tree | b2c0cfd6345b1d5408f3cb0a515d974992e16dca /ppapi/thunk | |
parent | 266c0e0eca2cdc4f598a19b9443a4100c24d89f1 (diff) | |
download | chromium_src-8c43efaf1ed7bfeb03903aaae059873edd57b246.zip chromium_src-8c43efaf1ed7bfeb03903aaae059873edd57b246.tar.gz chromium_src-8c43efaf1ed7bfeb03903aaae059873edd57b246.tar.bz2 |
Add trace event Pepper API
This facilitates adding trace data to chrome://tracing from plugins.
- broke out trace_event.h into trace_event.h/trace_event_internal.h
for easier transplanting to plugin code by eliminating dependence on base/.
- inlined trace_event.cc methods (4 total) so the trace_event_internal
implementation is contained in headers.
- added new PPB_TraceEvent_Dev interface (implemented entirely on the plugin side)
BUG=none
TEST=base unittests, manual for plugin testing
Review URL: https://chromiumcodereview.appspot.com/11464005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175233 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk')
-rw-r--r-- | ppapi/thunk/interfaces_ppb_public_dev.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ppapi/thunk/interfaces_ppb_public_dev.h b/ppapi/thunk/interfaces_ppb_public_dev.h index 24c1642..3bd6e56 100644 --- a/ppapi/thunk/interfaces_ppb_public_dev.h +++ b/ppapi/thunk/interfaces_ppb_public_dev.h @@ -31,6 +31,8 @@ PROXIED_IFACE(PPB_Instance, PPB_TEXTINPUT_DEV_INTERFACE_0_2, PROXIED_IFACE(NoAPIName, PPB_VIEW_DEV_INTERFACE_0_1, PPB_View_Dev_0_1) UNPROXIED_IFACE(PPB_Instance, PPB_ZOOM_DEV_INTERFACE_0_2, PPB_Zoom_Dev_0_2) +PROXIED_IFACE(PPB_Instance, PPB_TRACE_EVENT_DEV_INTERFACE_0_1, + PPB_Trace_Event_Dev_0_1) #if !defined(OS_NACL) PROXIED_API(PPB_Buffer) |