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

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

Issue 2778173002: Revert of "Speculatively launch Service Workers on mouse/touch events." (Closed)
Patch Set: rebase Created 3 years, 8 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
17 namespace network_hints { 13 namespace network_hints {
18 14
19 // 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
20 // network stack. 16 // network stack.
21 class PrescientNetworkingDispatcher : public blink::WebPrescientNetworking { 17 class PrescientNetworkingDispatcher : public blink::WebPrescientNetworking {
22 public: 18 public:
23 PrescientNetworkingDispatcher(); 19 PrescientNetworkingDispatcher();
24 ~PrescientNetworkingDispatcher() override; 20 ~PrescientNetworkingDispatcher() override;
25 21
26 void prefetchDNS(const blink::WebString& hostname) override; 22 void prefetchDNS(const blink::WebString& hostname) override;
27 void preconnect(const blink::WebURL& url, 23 void preconnect(const blink::WebURL& url,
28 const bool allow_credentials) override; 24 const bool allow_credentials) override;
29 void sendNavigationHint(const blink::WebURL& url,
30 blink::WebNavigationHintType type) override;
31 25
32 private: 26 private:
33 network_hints::RendererDnsPrefetch dns_prefetch_; 27 network_hints::RendererDnsPrefetch dns_prefetch_;
34 network_hints::RendererPreconnect preconnect_; 28 network_hints::RendererPreconnect preconnect_;
35 29
36 DISALLOW_COPY_AND_ASSIGN(PrescientNetworkingDispatcher); 30 DISALLOW_COPY_AND_ASSIGN(PrescientNetworkingDispatcher);
37 }; 31 };
38 32
39 } // namespace network_hints 33 } // namespace network_hints
40 34
41 #endif // COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_ 35 #endif // COMPONENTS_NETWORK_HINTS_RENDERER_PRESCIENT_NETWORKING_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698