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

Unified Diff: chrome/test/chromedriver/server/chromedriver_server.cc

Issue 18419003: [chromedriver] Remove dll build target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 7 years, 6 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 | « chrome/test/chromedriver/commands_unittest.cc ('k') | chrome/test/chromedriver/server/http_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/server/chromedriver_server.cc
diff --git a/chrome/test/chromedriver/server/chromedriver_server.cc b/chrome/test/chromedriver/server/chromedriver_server.cc
index aff9fcab2bc7a1571bad387a682b4f2dd185fe4f..369c67e626f5360809157f3c0670ed463b37104e 100644
--- a/chrome/test/chromedriver/server/chromedriver_server.cc
+++ b/chrome/test/chromedriver/server/chromedriver_server.cc
@@ -16,7 +16,6 @@
#include "base/synchronization/waitable_event.h"
#include "chrome/test/chromedriver/chrome/log.h"
#include "chrome/test/chromedriver/chrome/version.h"
-#include "chrome/test/chromedriver/command_executor_impl.h"
#include "chrome/test/chromedriver/server/http_handler.h"
#include "chrome/test/chromedriver/server/http_response.h"
#include "third_party/mongoose/mongoose.h"
@@ -181,9 +180,7 @@ int main(int argc, char *argv[]) {
logging::SetMinLogLevel(logging::LOG_FATAL);
scoped_ptr<Log> log(new Logger(log_level));
- scoped_ptr<CommandExecutor> executor(new CommandExecutorImpl(log.get()));
- HttpHandler handler(
- log.get(), executor.Pass(), HttpHandler::CreateCommandMap(), url_base);
+ HttpHandler handler(log.get(), url_base);
base::WaitableEvent shutdown_event(false, false);
MongooseUserData user_data = { &handler, &shutdown_event };
« no previous file with comments | « chrome/test/chromedriver/commands_unittest.cc ('k') | chrome/test/chromedriver/server/http_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698