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

Unified Diff: net/cookies/cookie_store.h

Issue 1818603002: Keep track of ChannelIDService in CookieStore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DCHECK Created 4 years, 9 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: net/cookies/cookie_store.h
diff --git a/net/cookies/cookie_store.h b/net/cookies/cookie_store.h
index c44139b0b87257001f2413ad89632ff8e31a8784..e9d463cc5fa4a2a98138fde3e9571cd2cdd9eff4 100644
--- a/net/cookies/cookie_store.h
+++ b/net/cookies/cookie_store.h
@@ -206,9 +206,12 @@ class NET_EXPORT CookieStore {
// by some sort of persistence layer.
// TODO(nharper): Remove this method once crbug.com/548423 has been closed.
virtual bool IsEphemeral() = 0;
+ void SetChannelIDServiceID(int id);
+ int GetChannelIDServiceID();
mmenke 2016/03/28 17:54:00 Do you plan to keep this, long term? Why make the
nharper 2016/03/29 00:30:20 I'd like all of this debugging stuff to go away ev
protected:
CookieStore();
+ int channel_id_service_id_;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698