Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / third_party / tvcm / src / tvcm / guid.html
1 <!DOCTYPE html>
2 <!--
3 Copyright (c) 2014 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 <link rel="import" href="/tvcm.html">
8 <script>
9 'use strict';
10
11 tvcm.exportTo('tvcm', function() {
12
13   var nextGUID = 1;
14   var GUID = {
15     allocate: function() {
16       return nextGUID++;
17     }
18   };
19
20   return {
21     GUID: GUID
22   };
23 });
24 </script>