diff options
author | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 20:23:14 +0000 |
---|---|---|
committer | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 20:23:14 +0000 |
commit | 320ddbe75a02d9443c6b73073e9cf907668dccd2 (patch) | |
tree | 235eda270488154ad07f72ebd42e2c1f90dde01c | |
parent | ee8d79ff28ab0067cea4cf68047f8a57305519c8 (diff) | |
download | chromium_src-320ddbe75a02d9443c6b73073e9cf907668dccd2.zip chromium_src-320ddbe75a02d9443c6b73073e9cf907668dccd2.tar.gz chromium_src-320ddbe75a02d9443c6b73073e9cf907668dccd2.tar.bz2 |
Fix to make the clang bots happy.
BUG=none
TEST=clang bots green
TBR=nduca
Review URL: http://codereview.chromium.org/6682037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78091 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | content/common/gpu_info.cc | 2 | ||||
-rw-r--r-- | content/common/gpu_info.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/content/common/gpu_info.cc b/content/common/gpu_info.cc index 691917d..50e227e 100644 --- a/content/common/gpu_info.cc +++ b/content/common/gpu_info.cc @@ -10,3 +10,5 @@ GPUInfo::GPUInfo() device_id(0), can_lose_context(false) { } + +GPUInfo::~GPUInfo() { } diff --git a/content/common/gpu_info.h b/content/common/gpu_info.h index 28edd31..c014e09 100644 --- a/content/common/gpu_info.h +++ b/content/common/gpu_info.h @@ -18,6 +18,7 @@ struct GPUInfo { GPUInfo(); + ~GPUInfo(); // Whether more GPUInfo fields might be collected in the future. bool finalized; |