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

Unified Diff: experimental/webgtt/taskmap.cc

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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 | « experimental/webgtt/taskmap.h ('k') | experimental/webgtt/tests/nacltest/build.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webgtt/taskmap.cc
diff --git a/experimental/webgtt/taskmap.cc b/experimental/webgtt/taskmap.cc
deleted file mode 100644
index 922ef6e0462ca54a6255b3bc846d2fa739681725..0000000000000000000000000000000000000000
--- a/experimental/webgtt/taskmap.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2011 The Native Client Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be found
-// in the LICENSE file.
-
-#include "webgtt/taskmap.h"
-
-#include <boost/bind.hpp>
-
-#include <vector>
-
-#include "webgtt/algorithms.h"
-#include "webgtt/graph.h"
-
-namespace webgtt {
-
-TaskMap::TaskMap(const graph::Graph& input_graph,
- const std::vector<int>& args) {
- assert(static_cast<int>(args.size()) >= kMaxArgs);
- // taskID 0 : Graph coloring : no arguments needed.
- FunctionInfo coloring_function_info;
- coloring_function_info.number_of_arguments = 0;
- coloring_function_info.function_to_call = boost::bind(GetColoring,
- input_graph);
- task_map_.push_back(coloring_function_info);
-}
-
-} // namespace webgtt
« no previous file with comments | « experimental/webgtt/taskmap.h ('k') | experimental/webgtt/tests/nacltest/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698