Update to latest trace-viewer

Includes per-app frame track, and several new android alerts.

Change-Id: I9b4fbf6c88ed98d35e3e6fb8d0bbd15fa1c635de
diff --git a/trace-viewer/trace_viewer/core/analysis/multi_frame_sub_view.html b/trace-viewer/trace_viewer/core/analysis/multi_frame_sub_view.html
new file mode 100644
index 0000000..e824d8f
--- /dev/null
+++ b/trace-viewer/trace_viewer/core/analysis/multi_frame_sub_view.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2015 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.
+-->
+
+<link rel="import" href="/core/analysis/multi_event_sub_view.html">
+<link rel="import" href="/core/analysis/analysis_sub_view.html">
+<link rel="import" href="/core/analysis/util.html">
+
+<polymer-element name="tv-c-multi-frame-sub-view"
+    extends="tracing-analysis-sub-view">
+  <script>
+  'use strict';
+
+  Polymer({
+    created: function() {
+      this.currentSelection_ = undefined;
+    },
+
+    set selection(selection) {
+      this.textContent = '';
+      var realView = document.createElement('tv-c-a-multi-event-sub-view');
+      realView.eventsHaveDuration = false;
+      realView.eventsHaveSubRows = false;
+
+      this.appendChild(realView);
+      realView.setSelectionWithoutErrorChecks(selection);
+
+      this.currentSelection_ = selection;
+    },
+
+    get selection() {
+      return this.currentSelection_;
+    }
+  });
+  </script>
+</polymer>