1<!DOCTYPE html> 2<!-- 3Copyright (c) 2014 The Chromium Authors. All rights reserved. 4Use of this source code is governed by a BSD-style license that can be 5found in the LICENSE file. 6--> 7<link rel="import" href="/tracing/base/base.html"> 8<script> 9'use strict'; 10 11tr.exportTo('tr.b.unittest', function() { 12 var TestStatus = { 13 PENDING: 'pending-status', 14 RUNNING: 'running-status', 15 DONE_RUNNING: 'done-running-status' 16 }; 17 18 var TestTypes = { 19 UNITTEST: 'unittest-type', 20 PERFTEST: 'perftest-type' 21 }; 22 23 return { 24 TestStatus: TestStatus, 25 TestTypes: TestTypes 26 }; 27}); 28</script> 29