diff options
author | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-07 11:41:59 +0000 |
---|---|---|
committer | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-07 11:41:59 +0000 |
commit | bdebeb509212d1fe1473219375d88aae8412f820 (patch) | |
tree | 19f1927471aa0e473c49602cc038c245439f2e8e /base/memory | |
parent | 991db701dba52c6b3e0177236a0aa9a2f37499fa (diff) | |
download | chromium_src-bdebeb509212d1fe1473219375d88aae8412f820.zip chromium_src-bdebeb509212d1fe1473219375d88aae8412f820.tar.gz chromium_src-bdebeb509212d1fe1473219375d88aae8412f820.tar.bz2 |
Add missing BASE_EXPORT to fix build
In follow up to http://src.chromium.org/viewvc/chrome?view=rev&revision=108853
BUG=None
TEST=http://chromegw.corp.google.com/i/chromium/builders/Linux%20Builder%20%28dbg%29%28shared%29 goes green
TBR=willchan@chromium.org
Review URL: http://codereview.chromium.org/8491010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108855 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/memory')
-rw-r--r-- | base/memory/singleton.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/memory/singleton.h b/base/memory/singleton.h index d51fe36..d76070019 100644 --- a/base/memory/singleton.h +++ b/base/memory/singleton.h @@ -22,6 +22,7 @@ #include "base/at_exit.h" #include "base/atomicops.h" +#include "base/base_export.h" #include "base/third_party/dynamic_annotations/dynamic_annotations.h" #include "base/threading/thread_restrictions.h" @@ -34,7 +35,7 @@ static const subtle::AtomicWord kBeingCreatedMarker = 1; // We pull out some of the functionality into a non-templated function, so that // we can implement the more complicated pieces out of line in the .cc file. -subtle::AtomicWord WaitForInstance(subtle::AtomicWord* instance); +BASE_EXPORT subtle::AtomicWord WaitForInstance(subtle::AtomicWord* instance); } // namespace internal } // namespace base |