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

Unified Diff: content/common/cookie.typemap

Issue 2908443002: Initial implementation of Cookie service.
Patch Set: Partially written test. Created 3 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 | « content/common/cookie.mojom ('k') | content/common/cookie_service_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/cookie.typemap
diff --git a/content/common/cookie.typemap b/content/common/cookie.typemap
new file mode 100644
index 0000000000000000000000000000000000000000..7604d72739a7cf7947711f857353d8270a5fc694
--- /dev/null
+++ b/content/common/cookie.typemap
@@ -0,0 +1,18 @@
+mojom = "//content/common/cookie.mojom"
+public_headers = [
+ "//ipc/ipc_message_utils.h",
+ "//net/cookies/cookie_options.h",
+ "//net/cookies/canonical_cookie.h",
+ "//net/cookies/cookie_constants.h",
+]
+traits_headers = [ "//content/common/cookie_traits.h" ]
+deps = [
+ "//net:net",
+]
+type_mappings = [
+ "content.mojom.CookiePriority=net::CookiePriority",
+ "content.mojom.CookieSameSite=net::CookieSameSite",
+ "content.mojom.CookieSameSiteFilter=net::CookieOptions::SameSiteCookieMode",
+ "content.mojom.CookieOptions=net::CookieOptions",
+ "content.mojom.CanonicalCookie=net::CanonicalCookie",
+]
« no previous file with comments | « content/common/cookie.mojom ('k') | content/common/cookie_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698