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

Unified Diff: net/spdy/push_promise_helper.h

Issue 2346383003: Deprecated: Server Push Cancellation: add a interface PushPromiseHelper
Patch Set: Implemente PushPromiseHelper::Cancel() Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/chromium/quic_chromium_client_session.cc ('k') | net/spdy/spdy_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/push_promise_helper.h
diff --git a/net/spdy/push_promise_helper.h b/net/spdy/push_promise_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..1285c7bdbd4976d68cb57a0ba4239c76aae851ae
--- /dev/null
+++ b/net/spdy/push_promise_helper.h
@@ -0,0 +1,27 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_HTTP_PUSH_PROMISE_HELPER_H_
+#define NET_HTTP_PUSH_PROMISE_HELPER_H_
+
+#include "net/base/net_export.h"
+#include "url/gurl.h"
+
+namespace net {
+
+// An interface to a class that reflects information on the pushed request.
+class NET_EXPORT PushPromiseHelper {
+ public:
+ virtual ~PushPromiseHelper() {}
+
+ // Cancels the push if it is not claimed yet.
+ virtual void Cancel() = 0;
+
+ // Gets the URL of the pushed request.
+ virtual const GURL& GetURL() = 0;
+};
+
+} // namespace net
+
+#endif // NET_HTTP_PUSH_PROMISE_HELPER_H_
« no previous file with comments | « net/quic/chromium/quic_chromium_client_session.cc ('k') | net/spdy/spdy_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698