diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-27 02:46:05 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-27 02:46:05 +0000 |
commit | cef372905872fa0c92ed9a163cfa3cc66bde87f1 (patch) | |
tree | 352a6540642497068bfec633c8dc3a0f486ab73f /base/synchronization | |
parent | cac326b5df02531fd2f37c83a2f0872166f12195 (diff) | |
download | chromium_src-cef372905872fa0c92ed9a163cfa3cc66bde87f1.zip chromium_src-cef372905872fa0c92ed9a163cfa3cc66bde87f1.tar.gz chromium_src-cef372905872fa0c92ed9a163cfa3cc66bde87f1.tar.bz2 |
Delete some dead code.
Found by a tweaked -Wunused-member-function Nuno Lopes is working on.
BUG=none
R=brettw@chromium.org, miket@chromium.org, rsleevi@chromium.org, sky@chromium.org
TBR=rogerta, sky
Review URL: https://codereview.chromium.org/213363003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259767 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/synchronization')
-rw-r--r-- | base/synchronization/condition_variable_unittest.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/base/synchronization/condition_variable_unittest.cc b/base/synchronization/condition_variable_unittest.cc index ee554ff..5f947a9 100644 --- a/base/synchronization/condition_variable_unittest.cc +++ b/base/synchronization/condition_variable_unittest.cc @@ -101,7 +101,6 @@ class WorkQueue : public PlatformThread::Delegate { int GetNumThreadsTakingAssignments() const; int GetNumThreadsCompletingTasks() const; int GetNumberOfCompletedTasks() const; - TimeDelta GetWorkTime() const; void SetWorkTime(TimeDelta delay); void SetTaskCount(int count); @@ -651,10 +650,6 @@ int WorkQueue::GetNumberOfCompletedTasks() const { return total; } -TimeDelta WorkQueue::GetWorkTime() const { - return worker_delay_; -} - void WorkQueue::SetWorkTime(TimeDelta delay) { worker_delay_ = delay; } |