blob: c1914e1e35e382513b3d965cfedb62a7910aa226 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright 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/utils.html">
<script>
'use strict';
tr.exportTo('tr.c', function() {
function ScriptingObject() {
}
ScriptingObject.prototype = {
onModelChanged: function() {
}
};
return {
ScriptingObject: ScriptingObject
};
});
</script>