Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / base / 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="/base.html">
8 <script>
9 'use strict';
10
11 tv.exportTo('tv', function() {
12   var nextGUID = 1;
13   var GUID = {
14     allocate: function() {
15       return nextGUID++;
16     }
17   };
18
19   return {
20     GUID: GUID
21   };
22 });
23 </script>