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

Unified Diff: third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js

Issue 2861053003: DevTools: [lighthouse] Implement performance metrics filmstrip (Closed)
Patch Set: test fixed Created 3 years, 7 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/emulation/AdvancedApp.js
diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js b/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js
index be5ba325895f36b88bb204dbcbfe4ee056644757..4bdeda200762107ae1e04aae797394445b6b7047 100644
--- a/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js
+++ b/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js
@@ -33,7 +33,7 @@ Emulation.AdvancedApp = class {
this._rootSplitWidget.setDefaultFocusedChild(UI.inspectorView);
UI.inspectorView.setOwnerSplit(this._rootSplitWidget);
- this._inspectedPagePlaceholder = new Emulation.InspectedPagePlaceholder();
+ this._inspectedPagePlaceholder = Emulation.InspectedPagePlaceholder.instance();
this._inspectedPagePlaceholder.addEventListener(
Emulation.InspectedPagePlaceholder.Events.Update, this._onSetInspectedPageBounds.bind(this), this);
this._deviceModeView = new Emulation.DeviceModeWrapper(this._inspectedPagePlaceholder);

Powered by Google App Engine
This is Rietveld 408576698