// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_CLIENT_NOTIFICATION_JSON_FETCHER_H_ #define REMOTING_CLIENT_NOTIFICATION_JSON_FETCHER_H_ #include <optional> #include <string> #include "base/functional/callback_forward.h" namespace base { class Value; } // namespace base namespace net { struct NetworkTrafficAnnotationTag; } // namespace net namespace remoting { // Interface for fetching a JSON file under https://www.gstatic.com/chromoting. class JsonFetcher { … }; } // namespace remoting #endif // REMOTING_CLIENT_NOTIFICATION_JSON_FETCHER_H_