Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / src / tracing / trace_model / event.js
index 586749e..b7a5eec 100644 (file)
@@ -4,12 +4,12 @@
 
 'use strict';
 
-base.require('base.guid');
+tvcm.require('tvcm.guid');
 
 /**
  * @fileoverview Provides the Event class.
  */
-base.exportTo('tracing.trace_model', function() {
+tvcm.exportTo('tracing.trace_model', function() {
 
   /**
    * The SelectionState enum defines how Events are displayed in the view.
@@ -28,7 +28,7 @@ base.exportTo('tracing.trace_model', function() {
    * @constructor
    */
   function Event() {
-    this.guid_ = base.GUID.allocate();
+    this.guid_ = tvcm.GUID.allocate();
     this.selectionState = SelectionState.NONE;
   }