| Index: third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| index 97ecc010bf22d2e0a8cafd629d6859c0957d7b0f..31b557e83ed7324b2dee288f42ecc0d6e5ffd199 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
|
| @@ -70,7 +70,9 @@ WebInspector.AppManifestView.prototype = {
|
|
|
| _updateManifest: function()
|
| {
|
| - this._target.resourceTreeModel.fetchAppManifest(this._renderManifest.bind(this));
|
| + var resourceTreeModel = WebInspector.ResourceTreeModel.fromTarget(this._target);
|
| + if (resourceTreeModel)
|
| + resourceTreeModel.fetchAppManifest(this._renderManifest.bind(this));
|
| },
|
|
|
| /**
|
|
|