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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js

Issue 2608043002: DevTools: extract modules (with extensions) (Closed)
Patch Set: fixes Created 3 years, 11 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: third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js b/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
index 42c424c9b6fe536cbc47372708efb6e8cc9e841f..598a62837a48d75b866b8eb88d446f15e39d07fd 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
@@ -104,7 +104,7 @@ Resources.CookieItemsView = class extends UI.SimpleView {
if (!this._cookiesTable) {
this._cookiesTable =
- new Components.CookiesTable(false, this._update.bind(this), this._showDeleteButton.bind(this));
+ new CookieTable.CookiesTable(false, this._update.bind(this), this._showDeleteButton.bind(this));
}
this._cookiesTable.setCookies(this._cookies);

Powered by Google App Engine
This is Rietveld 408576698