diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 10:45:39 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 10:45:39 +0000 |
commit | 5ea888129de0660d9afb8e1e348e3081be95ba46 (patch) | |
tree | 7aa36f8e8455992946131eb8dfe2f40130f85757 /content/gpu/gpu_child_thread.cc | |
parent | b743ea864e2dccc136a3cedd67b5482b8bd176e4 (diff) | |
download | chromium_src-5ea888129de0660d9afb8e1e348e3081be95ba46.zip chromium_src-5ea888129de0660d9afb8e1e348e3081be95ba46.tar.gz chromium_src-5ea888129de0660d9afb8e1e348e3081be95ba46.tar.bz2 |
Initialize a few uninitialized members in GPU classes.
BUG=None
TEST=None
CID=12914, 15729, 12761, 8585, 14365, 15761, 14796, 15865.
Review URL: http://codereview.chromium.org/6713127
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/gpu/gpu_child_thread.cc')
-rw-r--r-- | content/gpu/gpu_child_thread.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/gpu/gpu_child_thread.cc b/content/gpu/gpu_child_thread.cc index 98b6346..12a8ec9 100644 --- a/content/gpu/gpu_child_thread.cc +++ b/content/gpu/gpu_child_thread.cc @@ -71,6 +71,7 @@ GpuChildThread::GpuChildThread(const std::string& channel_id) : ChildThread(channel_id) { #if defined(OS_WIN) target_services_ = NULL; + collecting_dx_diagnostics_ = false; #endif } |