- From: Jake Archibald <notifications@github.com>
 - Date: Fri, 28 Oct 2016 03:40:03 -0700
 - To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
 
Received on Friday, 28 October 2016 10:40:35 UTC
jakearchibald commented on this pull request.
> +  <section dfn-for="NavigationPreloadManager">
+    <h3 id="navigation-preload-manager">{{NavigationPreloadManager}}</h3>
+
+    <pre class="idl">
+      [SecureContext, Exposed=(Window,Worker)]
+      interface NavigationPreloadManager {
+        Promise<void> enable();
+        Promise<void> disable();
+        Promise<void> setHeaderValue(DOMString value);
+        Promise<NavigationPreloadState> getState();
+      };
+    </pre>
+    <pre class="idl" id="navigation-preload-state">
+      dictionary NavigationPreloadState {
+        boolean enabled = false;
+        DOMString headerValue;
Yea, it should be
-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/pull/983
Received on Friday, 28 October 2016 10:40:35 UTC