diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-28 23:16:25 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-28 23:16:25 +0000 |
commit | 3d81b04e91218a3626d34019294aa366498ba13f (patch) | |
tree | 2d9e910c825f96038f342d166e04af21c3f5f5e0 /gpu/tools | |
parent | 389ac2b1fbaa2dde7222b18c358f43fb797bf366 (diff) | |
download | chromium_src-3d81b04e91218a3626d34019294aa366498ba13f.zip chromium_src-3d81b04e91218a3626d34019294aa366498ba13f.tar.gz chromium_src-3d81b04e91218a3626d34019294aa366498ba13f.tar.bz2 |
Delete unused member variable.
BUG=none
Review URL: https://chromiumcodereview.appspot.com/10828063
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148909 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/tools')
-rw-r--r-- | gpu/tools/compositor_model_bench/compositor_model_bench.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gpu/tools/compositor_model_bench/compositor_model_bench.cc b/gpu/tools/compositor_model_bench/compositor_model_bench.cc index 0196d9b..1f5de48 100644 --- a/gpu/tools/compositor_model_bench/compositor_model_bench.cc +++ b/gpu/tools/compositor_model_bench/compositor_model_bench.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -61,8 +61,7 @@ void _update_loop(Simulator* sim); class Simulator { public: Simulator(int seconds_per_test, const FilePath& output_path) - : running_(false), - current_sim_(NULL), + : current_sim_(NULL), output_path_(output_path), seconds_per_test_(seconds_per_test), ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)), @@ -341,7 +340,6 @@ class Simulator { } // Simulation task list for this execution - bool running_; RenderModelSimulator* current_sim_; queue<SimulationSpecification> sims_remaining_; queue<SimulationSpecification> sims_completed_; |