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

Unified Diff: mojo/services/network/network_service_impl.h

Issue 1290323002: HTMLViewer no longer connects to NetworkService interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 4 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 | « mojo/services/network/network_service_delegate.cc ('k') | mojo/services/network/network_service_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/network/network_service_impl.h
diff --git a/mojo/services/network/network_service_impl.h b/mojo/services/network/network_service_impl.h
index 5f063ebbfd7e6aba703def0fd2a7b1137b73e497..b349cda1656077d1475179514306f5344ae03048 100644
--- a/mojo/services/network/network_service_impl.h
+++ b/mojo/services/network/network_service_impl.h
@@ -12,20 +12,14 @@
#include "url/gurl.h"
namespace mojo {
-class ApplicationConnection;
-class NetworkContext;
class NetworkServiceImpl : public NetworkService {
public:
- NetworkServiceImpl(ApplicationConnection* connection,
- NetworkContext* context,
- scoped_ptr<mojo::AppRefCount> app_refcount,
+ NetworkServiceImpl(scoped_ptr<mojo::AppRefCount> app_refcount,
InterfaceRequest<NetworkService> request);
~NetworkServiceImpl() override;
// NetworkService methods:
- void GetCookieStore(InterfaceRequest<CookieStore> store) override;
- void CreateWebSocket(InterfaceRequest<WebSocket> socket) override;
void CreateTCPBoundSocket(
NetAddressPtr local_address,
InterfaceRequest<TCPBoundSocket> bound_socket,
@@ -45,9 +39,7 @@ class NetworkServiceImpl : public NetworkService {
const GetMimeTypeFromFileCallback& callback) override;
private:
- NetworkContext* context_;
scoped_ptr<mojo::AppRefCount> app_refcount_;
- GURL origin_;
StrongBinding<NetworkService> binding_;
};
« no previous file with comments | « mojo/services/network/network_service_delegate.cc ('k') | mojo/services/network/network_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698