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

Side by Side Diff: native_client_sdk/src/libraries/xray/browser.c

Issue 19673003: [NaCl SDK] Consistent use of copyright header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 */
5 4
6 5
7 /* XRay -- a simple profiler for Native Client */ 6 /* XRay -- a simple profiler for Native Client */
8 7
9 #ifndef XRAY_DISABLE_BROWSER_INTEGRATION 8 #ifndef XRAY_DISABLE_BROWSER_INTEGRATION
10 9
11 #include <alloca.h> 10 #include <alloca.h>
12 #include <assert.h> 11 #include <assert.h>
13 #include <errno.h> 12 #include <errno.h>
14 #include <stdarg.h> 13 #include <stdarg.h>
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 } 122 }
124 } 123 }
125 124
126 void XRayRegisterBrowserInterface(PPB_GetInterface interface) { 125 void XRayRegisterBrowserInterface(PPB_GetInterface interface) {
127 ppb_trace_event_interface = (PPB_Trace_Event_Dev*)interface( 126 ppb_trace_event_interface = (PPB_Trace_Event_Dev*)interface(
128 PPB_TRACE_EVENT_DEV_INTERFACE); 127 PPB_TRACE_EVENT_DEV_INTERFACE);
129 assert(ppb_trace_event_interface); 128 assert(ppb_trace_event_interface);
130 } 129 }
131 130
132 #endif /* XRAY */ 131 #endif /* XRAY */
133 #endif /* XRAY_DISABLE_BROWSER_INTEGRATION */ 132 #endif /* XRAY_DISABLE_BROWSER_INTEGRATION */
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/sdk_util/simple_lock.h ('k') | native_client_sdk/src/libraries/xray/demangle.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698