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

Unified Diff: base/debug/trace_event.h

Issue 7461141: Rename BASE_API to BASE_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/debug/stack_trace.h ('k') | base/debug/trace_event_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/trace_event.h
===================================================================
--- base/debug/trace_event.h (revision 95578)
+++ base/debug/trace_event.h (working copy)
@@ -302,7 +302,7 @@
// Simple union of values. This is much lighter weight than base::Value, which
// requires dynamic allocation and a vtable. To keep the trace runtime overhead
// low, we want constant size storage here.
-class BASE_API TraceValue {
+class BASE_EXPORT TraceValue {
public:
enum Type {
TRACE_TYPE_UNDEFINED,
@@ -442,7 +442,7 @@
};
-class BASE_API TraceLog {
+class BASE_EXPORT TraceLog {
public:
static TraceLog* GetInstance();
@@ -527,7 +527,7 @@
namespace internal {
// Used by TRACE_EVENTx macro. Do not use directly.
-class BASE_API TraceEndOnScopeClose {
+class BASE_EXPORT TraceEndOnScopeClose {
public:
TraceEndOnScopeClose() : p_data_(NULL) {}
~TraceEndOnScopeClose() {
@@ -556,7 +556,7 @@
};
// Used by TRACE_EVENTx macro. Do not use directly.
-class BASE_API TraceEndOnScopeCloseThreshold {
+class BASE_EXPORT TraceEndOnScopeCloseThreshold {
public:
TraceEndOnScopeCloseThreshold() : p_data_(NULL) {}
~TraceEndOnScopeCloseThreshold() {
« no previous file with comments | « base/debug/stack_trace.h ('k') | base/debug/trace_event_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698