blob: fc12681a71e5c17fe94fb109629c530fc7785e71 [file] [log] [blame]
<!DOCTYPE html>
<!--
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.
-->
<link rel="import" href="/base/ui.html">
<polymer-element name='tv-c-side-panel'>
<script>
'use strict';
Polymer({
ready: function() {
this.objectInstance_ = undefined;
},
get rangeOfInterest() {
throw new Error('Not implemented');
},
set rangeOfInterest(rangeOfInterest) {
throw new Error('Not implemented');
},
get selection() {
throw new Error('Not implemented');
},
set selection(selection) {
throw new Error('Not implemented');
},
get model() {
throw new Error('Not implemented');
},
set model(model) {
throw new Error('Not implemented');
},
get listeningToKeys() {
throw new Error('Not implemented');
}
});
</script>
</polymer-element>