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

Unified Diff: content/public/browser/storage_partition.h

Issue 15969025: Generates the DTLS identity in browser process and returns it to render process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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: content/public/browser/storage_partition.h
diff --git a/content/public/browser/storage_partition.h b/content/public/browser/storage_partition.h
index bd7f90cb6a25a561b1cc6655352629a735a2862d..de38d579a1cfa083d3ba092184088c6306133102 100644
--- a/content/public/browser/storage_partition.h
+++ b/content/public/browser/storage_partition.h
@@ -37,6 +37,7 @@ namespace content {
class BrowserContext;
class IndexedDBContext;
class DOMStorageContext;
+class DTLSIdentityStore;
// Defines what persistent state a child process can access.
//
@@ -55,6 +56,7 @@ class StoragePartition {
virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0;
virtual DOMStorageContext* GetDOMStorageContext() = 0;
virtual IndexedDBContext* GetIndexedDBContext() = 0;
+ virtual DTLSIdentityStore* GetDTLSIdentityStore() = 0;
jam 2013/06/14 23:33:13 no need to modify content api since this is only c
jiayl 2013/06/17 17:54:49 Done.
enum StorageMask {
kCookies = 1 << 0,

Powered by Google App Engine
This is Rietveld 408576698