Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1793)

Unified Diff: content/utility/utility_thread_impl.cc

Issue 2816593002: utility_thread_impl.cc: Remove dead code. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/utility/utility_thread_impl.cc
diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc
index e86c06c1b968d87a886e43361a1f13306f188b59..36e0e1d7d8357bba7ca5061e4f6139e91d5e03e2 100644
--- a/content/utility/utility_thread_impl.cc
+++ b/content/utility/utility_thread_impl.cc
@@ -29,17 +29,6 @@
namespace content {
-namespace {
-
-template<typename SRC, typename DEST>
-void ConvertVector(const SRC& src, DEST* dest) {
- dest->reserve(src.size());
- for (typename SRC::const_iterator i = src.begin(); i != src.end(); ++i)
- dest->push_back(typename DEST::value_type(*i));
-}
-
-} // namespace
-
UtilityThreadImpl::UtilityThreadImpl()
: ChildThreadImpl(ChildThreadImpl::Options::Builder().Build()) {
Init();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698