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

Unified Diff: mojo/services/public/interfaces/network/cookie_store.mojom

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
Index: mojo/services/public/interfaces/network/cookie_store.mojom
diff --git a/mojo/shell/external_service.mojom b/mojo/services/public/interfaces/network/cookie_store.mojom
similarity index 61%
copy from mojo/shell/external_service.mojom
copy to mojo/services/public/interfaces/network/cookie_store.mojom
index e08f71fe504dc07219ad6058f01a4c623f36c1a6..7795f884bafc57bd5b33a82f6af79d2cc043a521 100644
--- a/mojo/shell/external_service.mojom
+++ b/mojo/services/public/interfaces/network/cookie_store.mojom
@@ -4,8 +4,9 @@
module mojo {
-interface ExternalService {
- Activate(handle<message_pipe> service_provider_handle);
+interface CookieStore {
+ Get(string url) => (string cookies);
+ Set(string url, string cookie) => (bool success);
};
}
« no previous file with comments | « mojo/services/network/network_service_impl.cc ('k') | mojo/services/public/interfaces/network/network_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698