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

Unified Diff: chrome/test/chromedriver/command_executor_impl.h

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/command_executor.h ('k') | chrome/test/chromedriver/command_names.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/command_executor_impl.h
diff --git a/chrome/test/chromedriver/command_executor_impl.h b/chrome/test/chromedriver/command_executor_impl.h
deleted file mode 100644
index fa8312bf191fd4488458cdef287a58da3f3368e8..0000000000000000000000000000000000000000
--- a/chrome/test/chromedriver/command_executor_impl.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_
-#define CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/callback_forward.h"
-#include "base/compiler_specific.h"
-#include "base/gtest_prod_util.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/threading/thread.h"
-#include "chrome/test/chromedriver/chrome/status.h"
-#include "chrome/test/chromedriver/command.h"
-#include "chrome/test/chromedriver/command_executor.h"
-#include "chrome/test/chromedriver/net/sync_websocket_factory.h"
-#include "chrome/test/chromedriver/session_map.h"
-#include "chrome/test/chromedriver/synchronized_map.h"
-
-namespace base {
-class DictionaryValue;
-class Value;
-}
-
-class Adb;
-class ChromeLauncherImpl;
-class DeviceManager;
-class Log;
-class URLRequestContextGetter;
-
-class CommandExecutorImpl : public CommandExecutor {
- public:
- explicit CommandExecutorImpl(Log* log);
- virtual ~CommandExecutorImpl();
-
- // Overridden from CommandExecutor:
- virtual void Init() OVERRIDE;
- virtual void ExecuteCommand(const std::string& name,
- const base::DictionaryValue& params,
- const std::string& session_id,
- StatusCode* status_code,
- scoped_ptr<base::Value>* value,
- std::string* out_session_id) OVERRIDE;
-
- private:
- FRIEND_TEST_ALL_PREFIXES(CommandExecutorImplTest, SimpleCommand);
- FRIEND_TEST_ALL_PREFIXES(
- CommandExecutorImplTest, CommandThatDoesntSetValueOrSessionId);
- FRIEND_TEST_ALL_PREFIXES(CommandExecutorImplTest, CommandThatReturnsError);
-
- Log* log_;
- base::Thread io_thread_;
- scoped_refptr<URLRequestContextGetter> context_getter_;
- SyncWebSocketFactory socket_factory_;
- SessionMap session_map_;
- SynchronizedMap<std::string, Command> command_map_;
- scoped_ptr<Adb> adb_;
- scoped_ptr<DeviceManager> device_manager_;
-
- DISALLOW_COPY_AND_ASSIGN(CommandExecutorImpl);
-};
-
-#endif // CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_
« no previous file with comments | « chrome/test/chromedriver/command_executor.h ('k') | chrome/test/chromedriver/command_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698