#include "remoting/client/notification/gstatic_json_fetcher.h"
#include "base/json/json_reader.h"
#include "base/logging.h"
#include "base/ranges/algorithm.h"
#include "base/task/single_thread_task_runner.h"
#include "net/http/http_status_code.h"
#include "remoting/base/url_request_context_getter.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/public/cpp/simple_url_loader.h"
namespace remoting {
namespace {
constexpr char kGstaticUrlPrefix[] = …;
std::optional<base::Value> GetResponse(std::unique_ptr<std::string> body) { … }
}
GstaticJsonFetcher::GstaticJsonFetcher(
scoped_refptr<base::SingleThreadTaskRunner> network_task_runner)
: … { … }
GstaticJsonFetcher::~GstaticJsonFetcher() = default;
void GstaticJsonFetcher::FetchJsonFile(
const std::string& relative_path,
FetchJsonFileCallback done,
const net::NetworkTrafficAnnotationTag& traffic_annotation) { … }
GURL GstaticJsonFetcher::GetFullUrl(const std::string& relative_path) { … }
void GstaticJsonFetcher::OnURLLoadComplete(
const network::SimpleURLLoader* source,
std::unique_ptr<std::string> body) { … }
}