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

Unified Diff: content/browser/devtools/protocol/storage_handler.cc

Issue 2033353002: Remove PeerConnectionIdentityStore and related messaging/storage code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delayed deletion by 120s Created 4 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/browser/devtools/protocol/storage_handler.cc
diff --git a/content/browser/devtools/protocol/storage_handler.cc b/content/browser/devtools/protocol/storage_handler.cc
index c9e7a0505d862ef4d0df30441ea8caf3a8c03bd4..94415de7615616893ac9e7b0c6b2077af5004c00 100644
--- a/content/browser/devtools/protocol/storage_handler.cc
+++ b/content/browser/devtools/protocol/storage_handler.cc
@@ -26,7 +26,6 @@ static const char kIndexedDB[] = "indexeddb";
static const char kLocalStorage[] = "local_storage";
static const char kShaderCache[] = "shader_cache";
static const char kWebSQL[] = "websql";
-static const char kWebRTCIdentity[] = "webrdc_identity";
static const char kServiceWorkers[] = "service_workers";
static const char kCacheStorage[] = "cache_storage";
static const char kAll[] = "all";
@@ -69,8 +68,6 @@ Response StorageHandler::ClearDataForOrigin(
remove_mask |= StoragePartition::REMOVE_DATA_MASK_SHADER_CACHE;
if (set.count(kWebSQL))
remove_mask |= StoragePartition::REMOVE_DATA_MASK_WEBSQL;
- if (set.count(kWebRTCIdentity))
- remove_mask |= StoragePartition::REMOVE_DATA_MASK_WEBRTC_IDENTITY;
if (set.count(kServiceWorkers))
remove_mask |= StoragePartition::REMOVE_DATA_MASK_SERVICE_WORKERS;
if (set.count(kCacheStorage))

Powered by Google App Engine
This is Rietveld 408576698