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)) |