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

Side by Side Diff: chrome/test/chromedriver/command_executor_impl.h

Issue 12848005: [chromedriver] Separate stuff of chrome from chromedriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments and fix compile error on mac. Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_
6 #define CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ 6 #define CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback_forward.h" 11 #include "base/callback_forward.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/threading/thread.h" 15 #include "base/threading/thread.h"
16 #include "chrome/test/chromedriver/chrome/status.h"
16 #include "chrome/test/chromedriver/command.h" 17 #include "chrome/test/chromedriver/command.h"
17 #include "chrome/test/chromedriver/command_executor.h" 18 #include "chrome/test/chromedriver/command_executor.h"
18 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" 19 #include "chrome/test/chromedriver/net/sync_websocket_factory.h"
19 #include "chrome/test/chromedriver/session_map.h" 20 #include "chrome/test/chromedriver/session_map.h"
20 #include "chrome/test/chromedriver/status.h"
21 #include "chrome/test/chromedriver/synchronized_map.h" 21 #include "chrome/test/chromedriver/synchronized_map.h"
22 22
23 namespace base { 23 namespace base {
24 class DictionaryValue; 24 class DictionaryValue;
25 class Value; 25 class Value;
26 } 26 }
27 27
28 class ChromeLauncherImpl; 28 class ChromeLauncherImpl;
29 class URLRequestContextGetter; 29 class URLRequestContextGetter;
30 30
(...skipping 20 matching lines...) Expand all
51 base::Thread io_thread_; 51 base::Thread io_thread_;
52 scoped_refptr<URLRequestContextGetter> context_getter_; 52 scoped_refptr<URLRequestContextGetter> context_getter_;
53 SyncWebSocketFactory socket_factory_; 53 SyncWebSocketFactory socket_factory_;
54 SessionMap session_map_; 54 SessionMap session_map_;
55 SynchronizedMap<std::string, Command> command_map_; 55 SynchronizedMap<std::string, Command> command_map_;
56 56
57 DISALLOW_COPY_AND_ASSIGN(CommandExecutorImpl); 57 DISALLOW_COPY_AND_ASSIGN(CommandExecutorImpl);
58 }; 58 };
59 59
60 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ 60 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/command_executor.h ('k') | chrome/test/chromedriver/command_executor_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698