Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / components / network_hints / renderer / prescient_networking_dispatcher.h
blobd3159a9dbf9b80b939812b2485b4bd827a80c7c4
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_
6 #define COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_
8 #include "base/macros.h"
9 #include "components/network_hints/renderer/renderer_dns_prefetch.h"
10 #include "components/network_hints/renderer/renderer_preconnect.h"
11 #include "third_party/WebKit/public/platform/WebPrescientNetworking.h"
13 namespace network_hints {
15 // The main entry point from blink for sending DNS prefetch requests to the
16 // network stack.
17 class PrescientNetworkingDispatcher : public blink::WebPrescientNetworking {
18 public:
19 PrescientNetworkingDispatcher();
20 ~PrescientNetworkingDispatcher() override;
22 virtual void prefetchDNS(const blink::WebString& hostname) override;
23 virtual void preconnect(const blink::WebURL& url,
24 const bool allow_credentials) override;
26 private:
27 network_hints::RendererDnsPrefetch dns_prefetch_;
28 network_hints::RendererPreconnect preconnect_;
30 DISALLOW_COPY_AND_ASSIGN(PrescientNetworkingDispatcher);
33 } // namespace network_hints
35 #endif // COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_