1 <!DOCTYPE html> 2 <!-- 3 Copyright 2015 The Chromium Authors. All rights reserved. 4 Use of this source code is governed by a BSD-style license that can be 5 found in the LICENSE file. 6 --> 7 8 <link rel="import" href="/tracing/base/base.html"> 9 10 <script> 11 'use strict'; 12 13 tr.exportTo('tr.c', function() { 14 function ScriptingObject() { 15 } 16 17 ScriptingObject.prototype = { 18 onModelChanged: function(model) { 19 } 20 }; 21 22 return { 23 ScriptingObject: ScriptingObject 24 }; 25 }); 26 </script> 27