summaryrefslogtreecommitdiffstats
path: root/content/public/browser/android/devtools_auth.h
blob: 00ae9d96d85de3cf42fc36c1d35fbd90620f8435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 CONTENT_PUBLIC_BROWSER_ANDROID_DEVTOOLS_AUTH_H_
#define CONTENT_PUBLIC_BROWSER_ANDROID_DEVTOOLS_AUTH_H_

#include "content/common/content_export.h"
#include "net/socket/unix_domain_server_socket_posix.h"

namespace content {

// Returns true if the given peer identified by the credentials is authorized
// to connect to the devtools server, false if not.
CONTENT_EXPORT bool CanUserConnectToDevTools(
    const net::UnixDomainServerSocket::Credentials& credentials);

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_ANDROID_DEVTOOLS_AUTH_H_