Preprocessor for the LineSearchMinimizer.

Change-Id: Ieb5dfe1c0b96ef323c1130edd0c3a8a8b2c644cc
diff --git a/internal/ceres/preprocessor.cc b/internal/ceres/preprocessor.cc
index a572d2b..318c5e2 100644
--- a/internal/ceres/preprocessor.cc
+++ b/internal/ceres/preprocessor.cc
@@ -30,6 +30,7 @@
 
 #include "ceres/callbacks.h"
 #include "ceres/gradient_checking_cost_function.h"
+#include "ceres/line_search_preprocessor.h"
 #include "ceres/preprocessor.h"
 #include "ceres/problem_impl.h"
 #include "ceres/solver.h"
@@ -43,8 +44,9 @@
     return new TrustRegionPreprocessor;
   }
 
-  // TODO(sameeragarwal): Add the LineSearchPreprocessor when it is
-  // ready.
+  if (minimizer_type == LINE_SEARCH) {
+    return new LineSearchPreprocessor;
+  }
 
   LOG(FATAL) << "Unknown minimizer_type: " << minimizer_type;
   return NULL;