cros: Remove default pinned apps trial.
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / halted_status_view.js
blob45c2f0996a133e8350e43116a1160af959fc1a8c
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.
5 /**
6  * The status view at the top of the page after stopping capturing.
7  */
8 var HaltedStatusView = (function() {
9   'use strict';
11   // We inherit from DivView.
12   var superClass = DivView;
14   function HaltedStatusView() {
15     superClass.call(this, HaltedStatusView.MAIN_BOX_ID);
16   }
18   HaltedStatusView.MAIN_BOX_ID = 'halted-status-view';
20   HaltedStatusView.prototype = {
21     // Inherit the superclass's methods.
22     __proto__: superClass.prototype
23   };
25   return HaltedStatusView;
26 })();