blob: d6bc2cdb132439e04a9018c7e3160f64d8114cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* The status view at the top of the page when viewing a loaded dump file.
*/
var LoadedStatusView = (function() {
'use strict';
// We inherit from DivView.
var superClass = DivView;
function LoadedStatusView() {
superClass.call(this, LoadedStatusView.MAIN_BOX_ID);
}
LoadedStatusView.MAIN_BOX_ID = 'loaded-status-view';
LoadedStatusView.DUMP_FILE_NAME_ID = 'loaded-status-view-dump-file-name';
LoadedStatusView.prototype = {
// Inherit the superclass's methods.
__proto__: superClass.prototype,
setFileName: function(fileName) {
$(LoadedStatusView.DUMP_FILE_NAME_ID).innerText = fileName;
}
};
return LoadedStatusView;
})();
|