diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 22:56:41 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 22:56:41 +0000 |
commit | 9fc441643df5e17c19133a637c1a9d1a70fbb07c (patch) | |
tree | 6c4cdb1e8c1ff0b6b132187be94e9968e2c83da1 /media | |
parent | 096b0317209cfa8ef79cbf9fb9351f00c1f60087 (diff) | |
download | chromium_src-9fc441643df5e17c19133a637c1a9d1a70fbb07c.zip chromium_src-9fc441643df5e17c19133a637c1a9d1a70fbb07c.tar.gz chromium_src-9fc441643df5e17c19133a637c1a9d1a70fbb07c.tar.bz2 |
Add a convenience typedef LazyInstance<T>::Leaky to avoid repeating T.
Converted the first 20 or so hits for LeakyLazyInstanceTraits on codesearch to
demonstrate the benefit at callsites. The real change is base/lazy_instance.h;
everything else is example.
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/9192024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/base/media_log.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/media/base/media_log.cc b/media/base/media_log.cc index d223b51..d77b16d 100644 --- a/media/base/media_log.cc +++ b/media/base/media_log.cc @@ -18,9 +18,7 @@ namespace media { // A count of all MediaLogs created on this render process. // Used to generate unique ids. -static base::LazyInstance< - base::AtomicSequenceNumber, - base::LeakyLazyInstanceTraits<base::AtomicSequenceNumber> > media_log_count = +static base::LazyInstance<base::AtomicSequenceNumber>::Leaky media_log_count = LAZY_INSTANCE_INITIALIZER; const char* MediaLog::EventTypeToString(MediaLogEvent::Type type) { |