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

Unified Diff: net/spdy/server_push_delegate.h

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/priority_write_scheduler_test.cc ('k') | net/spdy/spdy_alt_svc_wire_format.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/server_push_delegate.h
diff --git a/net/spdy/server_push_delegate.h b/net/spdy/server_push_delegate.h
deleted file mode 100644
index 719ca8ee680c3a9ecdb48059365ca25aba38b67e..0000000000000000000000000000000000000000
--- a/net/spdy/server_push_delegate.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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_SPDY_SERVER_PUSH_DELEGATE_H_
-#define NET_SPDY_SERVER_PUSH_DELEGATE_H_
-
-#include "net/base/net_export.h"
-#include "net/log/net_log_with_source.h"
-#include "url/gurl.h"
-
-namespace net {
-
-// An interface to a class that should be notified when session receives server
-// push.
-class NET_EXPORT_PRIVATE ServerPushDelegate {
- public:
- // An interface to a class that reflects information on the pushed request.
- class NET_EXPORT ServerPushHelper {
- public:
- virtual ~ServerPushHelper() {}
-
- // Cancels the push if it is not claimed yet.
- virtual void Cancel() = 0;
-
- // Gets the URL of the pushed request.
- virtual const GURL& GetURL() const = 0;
- };
-
- virtual ~ServerPushDelegate() {}
-
- // Invoked by session when a push promise has been received.
- virtual void OnPush(std::unique_ptr<ServerPushHelper> push_helper,
- const NetLogWithSource& session_net_log) = 0;
-};
-
-} // namespace net
-
-#endif // NET_SPDY_SERVER_PUSH_DELEGATE_H_
« no previous file with comments | « net/spdy/priority_write_scheduler_test.cc ('k') | net/spdy/spdy_alt_svc_wire_format.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698