Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js b/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
| index a8ca998a00aa80f6698d5d440fc5fdc2bc416466..9209bfacc7d62f7a6469527423b618f65d201491 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/source_frame/SourceFrame.js |
| @@ -30,7 +30,7 @@ |
| /** |
| * @constructor |
| - * @extends {WebInspector.VBoxWithToolbarItems} |
| + * @extends {WebInspector.View} |
| * @implements {WebInspector.Searchable} |
| * @implements {WebInspector.Replaceable} |
| * @param {string} url |
| @@ -38,7 +38,7 @@ |
| */ |
| WebInspector.SourceFrame = function(url, lazyContent) |
| { |
| - WebInspector.VBoxWithToolbarItems.call(this); |
| + WebInspector.View.call(this, WebInspector.UIString("Source")); |
|
dgozman
2016/07/20 01:37:16
SourceFrame is a view? Sounds bad. Same goes for I
|
| this._url = url; |
| this._lazyContent = lazyContent; |
| @@ -645,7 +645,7 @@ WebInspector.SourceFrame.prototype = { |
| e.consume(true); |
| }, |
| - __proto__: WebInspector.VBoxWithToolbarItems.prototype |
| + __proto__: WebInspector.View.prototype |
| } |
| /** |