blob: c2712d041a37c295cffebe6ffc4b44c86c10f059 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright 2016 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="/tracing/base/base.html">
<script>
'use strict';
tr.exportTo('tr.v.d', function() {
/** @constructor */
function ValueRef(guid) {
this.guid = guid;
}
return {
ValueRef: ValueRef
};
});
</script>