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

Unified Diff: Source/devtools/front_end/sdk/WorkerManager.js

Issue 1044203004: [Storage] Cache storage inspection on all the frames! (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: comments and rebase Created 5 years, 8 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: Source/devtools/front_end/sdk/WorkerManager.js
diff --git a/Source/devtools/front_end/sdk/WorkerManager.js b/Source/devtools/front_end/sdk/WorkerManager.js
index 55b0552c8f27c22a857cfcdc619ca21cf2199b7c..c4da56b046abf8486af6b1587bdedff1f5e645cc 100644
--- a/Source/devtools/front_end/sdk/WorkerManager.js
+++ b/Source/devtools/front_end/sdk/WorkerManager.js
@@ -237,7 +237,7 @@ WebInspector.WorkerConnection = function(workerManager, workerId, inspectorConne
{
InspectorBackendClass.Connection.call(this);
//FIXME: remove resourceTreeModel and others from worker targets
- this.suppressErrorsForDomains(["Worker", "Page", "CSS", "DOM", "DOMStorage", "Database", "Network", "IndexedDB", "ServiceWorkerCache"]);
+ this.suppressErrorsForDomains(["Worker", "Page", "CSS", "DOM", "DOMStorage", "Database", "Network", "IndexedDB"]);
this._agent = workerManager.target().workerAgent();
this._workerId = workerId;

Powered by Google App Engine
This is Rietveld 408576698