Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2011 The Chromium Authors |
[email protected] | 4475d23 | 2011-07-27 15:29:20 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 7001915 | 2012-12-19 11:44:19 | [diff] [blame] | 5 | #ifndef CHROME_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ |
6 | #define CHROME_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ | ||||
[email protected] | 4475d23 | 2011-07-27 15:29:20 | [diff] [blame] | 7 | |
avi | e4d7b6f | 2015-12-26 00:59:18 | [diff] [blame] | 8 | #include <stdint.h> |
9 | |||||
[email protected] | 4475d23 | 2011-07-27 15:29:20 | [diff] [blame] | 10 | class RemoteDebuggingServer { |
11 | public: | ||||
vkuzkokov | 7942676 | 2015-01-13 08:03:00 | [diff] [blame] | 12 | static void EnableTetheringForDebug(); |
13 | |||||
Pavel Feldman | c9ae59c | 2018-02-13 16:15:15 | [diff] [blame] | 14 | RemoteDebuggingServer(); |
[email protected] | 4475d23 | 2011-07-27 15:29:20 | [diff] [blame] | 15 | |
Peter Boström | 53c6c595 | 2021-09-17 09:41:26 | [diff] [blame] | 16 | RemoteDebuggingServer(const RemoteDebuggingServer&) = delete; |
17 | RemoteDebuggingServer& operator=(const RemoteDebuggingServer&) = delete; | ||||
18 | |||||
19 | virtual ~RemoteDebuggingServer(); | ||||
[email protected] | 4475d23 | 2011-07-27 15:29:20 | [diff] [blame] | 20 | }; |
21 | |||||
[email protected] | 7001915 | 2012-12-19 11:44:19 | [diff] [blame] | 22 | #endif // CHROME_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ |