Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(656)

Unified Diff: netlog_viewer/top_bar_view.js

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « netlog_viewer/top_bar_view.html ('k') | netlog_viewer/top_mid_bottom_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/top_bar_view.js
diff --git a/netlog_viewer/top_bar_view.js b/netlog_viewer/top_bar_view.js
new file mode 100644
index 0000000000000000000000000000000000000000..66f5e9546210714d6bca1f1c6899e0b8ea86afa7
--- /dev/null
+++ b/netlog_viewer/top_bar_view.js
@@ -0,0 +1,62 @@
+// Copyright (c) 2013 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. It displays what mode net-internals
+ * is in (capturing, viewing only, viewing loaded log), and may have extra
+ * information and actions depending on the mode.
+ */
+var TopBarView = (function() {
+ 'use strict';
+
+ // We inherit from View.
+ var superClass = DivView;
+
+ /**
+ * Main entry point. Called once the page has loaded.
+ * @constructor
+ */
+ function TopBarView() {
+ assertFirstConstructorCall(TopBarView);
+
+ superClass.call(this, TopBarView.BOX_ID);
+
+ this.nameToSubView_ = {
+ loaded: new LoadedStatusView()
+ };
+
+ this.activeSubView_ = null;
+ }
+
+ TopBarView.BOX_ID = 'top-bar-view';
+
+ cr.addSingletonGetter(TopBarView);
+
+ TopBarView.prototype = {
+ // Inherit the superclass's methods.
+ __proto__: superClass.prototype,
+
+ switchToSubView: function(name) {
+ var newSubView = this.nameToSubView_[name];
+
+ if (!newSubView)
+ throw Error('Invalid subview name');
+
+ var prevSubView = this.activeSubView_;
+ this.activeSubView_ = newSubView;
+
+ if (prevSubView)
+ prevSubView.show(false);
+ newSubView.show(this.isVisible());
+
+ // Let the subview change the color scheme of the top bar.
+ $(TopBarView.BOX_ID).className = name + '-status-view';
+
+ return newSubView;
+ },
+ };
+
+ return TopBarView;
+})();
+
« no previous file with comments | « netlog_viewer/top_bar_view.html ('k') | netlog_viewer/top_mid_bottom_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698