blob: 8bc5a30bf34d812f4bf2094cb8376d0f3bda1910 [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2011 The Chromium Authors
[email protected]4475d232011-07-27 15:29:202// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]70019152012-12-19 11:44:195#ifndef CHROME_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_
6#define CHROME_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_
[email protected]4475d232011-07-27 15:29:207
avie4d7b6f2015-12-26 00:59:188#include <stdint.h>
9
[email protected]4475d232011-07-27 15:29:2010class RemoteDebuggingServer {
11 public:
vkuzkokov79426762015-01-13 08:03:0012 static void EnableTetheringForDebug();
13
Pavel Feldmanc9ae59c2018-02-13 16:15:1514 RemoteDebuggingServer();
[email protected]4475d232011-07-27 15:29:2015
Peter Boström53c6c5952021-09-17 09:41:2616 RemoteDebuggingServer(const RemoteDebuggingServer&) = delete;
17 RemoteDebuggingServer& operator=(const RemoteDebuggingServer&) = delete;
18
19 virtual ~RemoteDebuggingServer();
[email protected]4475d232011-07-27 15:29:2020};
21
[email protected]70019152012-12-19 11:44:1922#endif // CHROME_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_