1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 * The status view at the top of the page after stopping capturing.
8 var HaltedStatusView = (function() {
11 // We inherit from DivView.
12 var superClass = DivView;
14 function HaltedStatusView() {
15 superClass.call(this, HaltedStatusView.MAIN_BOX_ID);
18 HaltedStatusView.MAIN_BOX_ID = 'halted-status-view';
20 HaltedStatusView.prototype = {
21 // Inherit the superclass's methods.
22 __proto__: superClass.prototype
25 return HaltedStatusView;