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

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

Issue 409883007: Mojo: add support for cookies to HTMLViewer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: apply review feedback Created 6 years, 5 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/cookie_store_impl.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 668569b7043d67776ccb11ceb5b7781d159f18dd..bb0b654eda2463147017b7ce0e69f28a99a8698b 100644
--- a/mojo/services/network/network_service_impl.h
+++ b/mojo/services/network/network_service_impl.h
@@ -8,6 +8,7 @@
#include "base/compiler_specific.h"
#include "mojo/public/cpp/bindings/interface_impl.h"
#include "mojo/services/public/interfaces/network/network_service.mojom.h"
+#include "url/gurl.h"
namespace mojo {
class ApplicationConnection;
@@ -21,9 +22,11 @@ class NetworkServiceImpl : public InterfaceImpl<NetworkService> {
// NetworkService methods:
virtual void CreateURLLoader(InterfaceRequest<URLLoader> loader) OVERRIDE;
+ virtual void GetCookieStore(InterfaceRequest<CookieStore> store) OVERRIDE;
private:
NetworkContext* context_;
+ GURL origin_;
};
} // namespace mojo
« no previous file with comments | « mojo/services/network/cookie_store_impl.cc ('k') | mojo/services/network/network_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698