summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-07-15 17:52:43 +0000
committertkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-07-15 17:52:43 +0000
commitacb7c52bc6be002949de4149562cd53bd928fc95 (patch)
treeabf0425fdc4b7a40231f93dbe1339f02280955a1
parent8c82443833136eeb22057b00f18029340cbfd587 (diff)
downloadwebrtc-acb7c52bc6be002949de4149562cd53bd928fc95.tar.gz
Remove Thread::RunningForChannelManager().
I haven't heard of this failing, so it should be safe to remove. Let me know if this isn't the case. BUG=3388 R=andrew@webrtc.org, wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/18659004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6695 4adac7df-926f-26a2-2b94-8c16560cd09d
-rw-r--r--base/thread.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/base/thread.h b/base/thread.h
index 6132aa0a..742ba6dc 100644
--- a/base/thread.h
+++ b/base/thread.h
@@ -218,11 +218,6 @@ class Thread : public MessageQueue {
// question to guarantee that the returned value remains true for the duration
// of whatever code is conditionally executing because of the return value!
bool RunningForTest() { return running(); }
- // This is a legacy call-site that probably doesn't need to exist in the first
- // place.
- // TODO(fischman): delete once the ASSERT added in channelmanager.cc sticks
- // for a month (ETA 2014/06/22).
- bool RunningForChannelManager() { return running(); }
protected:
// Blocks the calling thread until this thread has terminated.