Commit 3d81b04e authored by thakis@chromium.org's avatar thakis@chromium.org

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
parent 389ac2b1
// 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 // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
...@@ -61,8 +61,7 @@ void _update_loop(Simulator* sim); ...@@ -61,8 +61,7 @@ void _update_loop(Simulator* sim);
class Simulator { class Simulator {
public: public:
Simulator(int seconds_per_test, const FilePath& output_path) Simulator(int seconds_per_test, const FilePath& output_path)
: running_(false), : current_sim_(NULL),
current_sim_(NULL),
output_path_(output_path), output_path_(output_path),
seconds_per_test_(seconds_per_test), seconds_per_test_(seconds_per_test),
ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)), ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)),
...@@ -341,7 +340,6 @@ class Simulator { ...@@ -341,7 +340,6 @@ class Simulator {
} }
// Simulation task list for this execution // Simulation task list for this execution
bool running_;
RenderModelSimulator* current_sim_; RenderModelSimulator* current_sim_;
queue<SimulationSpecification> sims_remaining_; queue<SimulationSpecification> sims_remaining_;
queue<SimulationSpecification> sims_completed_; queue<SimulationSpecification> sims_completed_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment