Chromium Code Reviews| Index: components/network_hints/renderer/prescient_networking_dispatcher.cc |
| diff --git a/components/network_hints/renderer/prescient_networking_dispatcher.cc b/components/network_hints/renderer/prescient_networking_dispatcher.cc |
| index a5145ac48b9fd03475e15bfe59c8441df9e21d09..43c24baaa2e8a2fb478707b107d7e1b66d934716 100644 |
| --- a/components/network_hints/renderer/prescient_networking_dispatcher.cc |
| +++ b/components/network_hints/renderer/prescient_networking_dispatcher.cc |
| @@ -30,4 +30,10 @@ void PrescientNetworkingDispatcher::preconnect(const blink::WebURL& url, |
| preconnect_.Preconnect(url, allow_credentials); |
| } |
| +void PrescientNetworkingDispatcher::sendNavigationHint( |
| + const blink::WebURL& url, |
| + blink::WebNavigationHintType type) { |
| + navigation_hint_sender_.sendNavigationHint(url, type); |
|
kinuko
2016/07/18 15:24:45
Why do we need a separate navigation hint sender o
horo
2016/07/19 02:09:43
I just wanted to do the same thing as RendererPrec
kinuko
2016/07/19 02:17:08
They have things to do there... what value does it
|
| +} |
| + |
| } // namespace network_hints |