OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ | 5 #ifndef COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ |
6 #define COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ | 6 #define COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "components/network_hints/renderer/renderer_dns_prefetch.h" | 9 #include "components/network_hints/renderer/renderer_dns_prefetch.h" |
10 #include "components/network_hints/renderer/renderer_preconnect.h" | 10 #include "components/network_hints/renderer/renderer_preconnect.h" |
11 #include "third_party/WebKit/public/platform/WebPrescientNetworking.h" | 11 #include "third_party/WebKit/public/platform/WebPrescientNetworking.h" |
12 | 12 |
13 namespace network_hints { | 13 namespace network_hints { |
14 | 14 |
15 // The main entry point from blink for sending DNS prefetch requests to the | 15 // The main entry point from blink for sending DNS prefetch requests to the |
16 // network stack. | 16 // network stack. |
17 class PrescientNetworkingDispatcher : public blink::WebPrescientNetworking { | 17 class PrescientNetworkingDispatcher : public blink::WebPrescientNetworking { |
18 public: | 18 public: |
19 PrescientNetworkingDispatcher(); | 19 PrescientNetworkingDispatcher(); |
20 ~PrescientNetworkingDispatcher() override; | 20 ~PrescientNetworkingDispatcher() override; |
21 | 21 |
22 void prefetchDNS(const blink::WebString& hostname) override; | 22 virtual void prefetchDNS(const blink::WebString& hostname) override; |
23 void preconnect(const blink::WebURL& url) override; | 23 // TODO(yoav): Remove the old version of the API |
| 24 virtual void preconnect(const blink::WebURL& url); |
| 25 virtual void preconnect(const blink::WebURL& url, |
| 26 const bool allow_credentials) override; |
24 | 27 |
25 private: | 28 private: |
26 network_hints::RendererDnsPrefetch dns_prefetch_; | 29 network_hints::RendererDnsPrefetch dns_prefetch_; |
27 network_hints::RendererPreconnect preconnect_; | 30 network_hints::RendererPreconnect preconnect_; |
28 | 31 |
29 DISALLOW_COPY_AND_ASSIGN(PrescientNetworkingDispatcher); | 32 DISALLOW_COPY_AND_ASSIGN(PrescientNetworkingDispatcher); |
30 }; | 33 }; |
31 | 34 |
32 } // namespace network_hints | 35 } // namespace network_hints |
33 | 36 |
34 #endif // COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ | 37 #endif // COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ |
OLD | NEW |