blob: 8b7ba32615196c555be319a5c8ae66d208a6fd38 [file] [log] [blame]
<!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="/base/base.html">
<script>
'use strict';
/**
* @fileoverview Provides the base class for all container classes.
*/
tv.exportTo('tv.c.trace_model', function() {
function EventContainer() {
}
EventContainer.prototype = {
/*
* @return {String} An identifier that is made up of this parent's
* stableIdentifier plus this countainer identifier.
*/
get stableId() {
throw new Error('Not implemented');
}
};
return {
EventContainer: EventContainer
};
});
</script>