blob: 8e27d1b5f41aaf123272153e3ab347290dc1f76a [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2014 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/selection.html">
<!--
@fileoverview Polymer element for various analysis sub-views.
-->
<polymer-element name="tr-c-a-sub-view">
<script>
'use strict';
Polymer({
set tabLabel(label) {
return this.setAttribute('tab-label', label);
},
get tabLabel() {
return this.getAttribute('tab-label');
},
get requiresTallView() {
return false;
},
get relatedEventsToHighlight() {
return undefined;
},
/**
* Each element extending this one must implement
* a 'selection' property.
*/
set selection(selection) {
throw new Error('Not implemented!');
},
get selection() {
throw new Error('Not implemented!');
}
});
</script>
</polymer-element>