chromium/remoting/client/notification/gstatic_json_fetcher.h

// 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_GSTATIC_JSON_FETCHER_H_
#define REMOTING_CLIENT_NOTIFICATION_GSTATIC_JSON_FETCHER_H_

#include <memory>

#include "base/containers/flat_map.h"
#include "base/memory/scoped_refptr.h"
#include "base/task/single_thread_task_runner.h"
#include "remoting/client/notification/json_fetcher.h"
#include "services/network/transitional_url_loader_factory_owner.h"
#include "url/gurl.h"

namespace network {
class SimpleURLLoader;
}

namespace remoting {

// A JsonFetcher implementation that actually talks to the gstatic server to
// get back the JSON files.
class GstaticJsonFetcher final : public JsonFetcher {};

}  // namespace remoting

#endif  // REMOTING_CLIENT_NOTIFICATION_GSTATIC_JSON_FETCHER_H_