diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 00:22:48 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 00:22:48 +0000 |
commit | d83a560943d1fdfcf9ec46ea001248a46e6148a7 (patch) | |
tree | c046a2757bbeb25c42f2f6af300cd4098289c715 /base/ref_counted_memory.cc | |
parent | 63692215e10b693db53a395a9fdefd77cf3a6fc6 (diff) | |
download | chromium_src-d83a560943d1fdfcf9ec46ea001248a46e6148a7.zip chromium_src-d83a560943d1fdfcf9ec46ea001248a46e6148a7.tar.gz chromium_src-d83a560943d1fdfcf9ec46ea001248a46e6148a7.tar.bz2 |
FBTF: Move Extension::LaunchContainer to extension_constants.h.
This makes browser.h not depend on extension.h.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/3399008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/ref_counted_memory.cc')
-rw-r--r-- | base/ref_counted_memory.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/ref_counted_memory.cc b/base/ref_counted_memory.cc index 04a2634..6b6328c 100644 --- a/base/ref_counted_memory.cc +++ b/base/ref_counted_memory.cc @@ -26,6 +26,9 @@ RefCountedBytes::RefCountedBytes(const std::vector<unsigned char>& initializer) : data(initializer) { } +RefCountedBytes::~RefCountedBytes() { +} + const unsigned char* RefCountedBytes::front() const { // STL will assert if we do front() on an empty vector, but calling code // expects a NULL. |