diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 15:34:00 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 15:34:00 +0000 |
commit | 0bea7254836d17e3f1e278cbd52e8b8816c49a48 (patch) | |
tree | eb16c01ad0143fad583cd60a87828fd90c94f61a /base/tracked.h | |
parent | 93f3edc8adc1db9e3d1deebde0ec58d15b7e1a91 (diff) | |
download | chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.zip chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.tar.gz chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.tar.bz2 |
Rename BASE_API to BASE_EXPORT.
R=rvargas
Review URL: http://codereview.chromium.org/7461141
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95618 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/tracked.h')
-rw-r--r-- | base/tracked.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/tracked.h b/base/tracked.h index af7029e..3c73519 100644 --- a/base/tracked.h +++ b/base/tracked.h @@ -21,7 +21,7 @@ #include <string> -#include "base/base_api.h" +#include "base/base_export.h" #include "base/time.h" #ifndef NDEBUG @@ -36,7 +36,7 @@ namespace tracked_objects { // Location provides basic info where of an object was constructed, or was // significantly brought to life. -class BASE_API Location { +class BASE_EXPORT Location { public: // Constructor should be called with a long-lived char*, such as __FILE__. // It assumes the provided value will persist as a global constant, and it @@ -81,7 +81,7 @@ class BASE_API Location { const void* const program_counter_; }; -BASE_API const void* GetProgramCounter(); +BASE_EXPORT const void* GetProgramCounter(); //------------------------------------------------------------------------------ // Define a macro to record the current source location. @@ -98,7 +98,7 @@ BASE_API const void* GetProgramCounter(); class Births; -class BASE_API Tracked { +class BASE_EXPORT Tracked { public: Tracked(); virtual ~Tracked(); |