Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: components/network_hints/renderer/prescient_networking_dispatcher.h

Issue 2043083002: Speculatively launch Service Workers on mouse/touch events. [2/5] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert BUILD.gn Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 blink {
14 enum class WebNavigationHintType;
15 }
16
13 namespace network_hints { 17 namespace network_hints {
14 18
15 // The main entry point from blink for sending DNS prefetch requests to the 19 // The main entry point from blink for sending DNS prefetch requests to the
16 // network stack. 20 // network stack.
17 class PrescientNetworkingDispatcher : public blink::WebPrescientNetworking { 21 class PrescientNetworkingDispatcher : public blink::WebPrescientNetworking {
18 public: 22 public:
19 PrescientNetworkingDispatcher(); 23 PrescientNetworkingDispatcher();
20 ~PrescientNetworkingDispatcher() override; 24 ~PrescientNetworkingDispatcher() override;
21 25
22 void prefetchDNS(const blink::WebString& hostname) override; 26 void prefetchDNS(const blink::WebString& hostname) override;
23 void preconnect(const blink::WebURL& url, 27 void preconnect(const blink::WebURL& url,
24 const bool allow_credentials) override; 28 const bool allow_credentials) override;
29 void sendNavigationHint(const blink::WebURL& url,
30 blink::WebNavigationHintType type) override;
25 31
26 private: 32 private:
27 network_hints::RendererDnsPrefetch dns_prefetch_; 33 network_hints::RendererDnsPrefetch dns_prefetch_;
28 network_hints::RendererPreconnect preconnect_; 34 network_hints::RendererPreconnect preconnect_;
29 35
30 DISALLOW_COPY_AND_ASSIGN(PrescientNetworkingDispatcher); 36 DISALLOW_COPY_AND_ASSIGN(PrescientNetworkingDispatcher);
31 }; 37 };
32 38
33 } // namespace network_hints 39 } // namespace network_hints
34 40
35 #endif // COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ 41 #endif // COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698