// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_VPN_SERVICE_PROXY_H_ #define CONTENT_PUBLIC_BROWSER_VPN_SERVICE_PROXY_H_ #include <memory> #include <vector> #include "base/functional/callback.h" #include "content/common/content_export.h" namespace content { class PepperVpnProviderResourceHostProxy; // Describes interface for communication with an external VpnService. // All the methods below can only be called on the UI thread. class CONTENT_EXPORT VpnServiceProxy { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_VPN_SERVICE_PROXY_H_