Title: [128137] trunk/Source/WebCore
Revision
128137
Author
[email protected]
Date
2012-09-10 18:19:31 -0700 (Mon, 10 Sep 2012)

Log Message

[chromium] Fix trace event macro naming issue
https://bugs.webkit.org/show_bug.cgi?id=96337

Patch by John Bates <[email protected]> on 2012-09-10
Reviewed by James Robinson.

* platform/chromium/TraceEvent.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (128136 => 128137)


--- trunk/Source/WebCore/ChangeLog	2012-09-11 00:50:33 UTC (rev 128136)
+++ trunk/Source/WebCore/ChangeLog	2012-09-11 01:19:31 UTC (rev 128137)
@@ -1,3 +1,12 @@
+2012-09-10  John Bates  <[email protected]>
+
+        [chromium] Fix trace event macro naming issue
+        https://bugs.webkit.org/show_bug.cgi?id=96337
+
+        Reviewed by James Robinson.
+
+        * platform/chromium/TraceEvent.h:
+
 2012-09-10  Joshua Bell  <[email protected]>
 
         IndexedDB: IDBFactory.deleteDatabase() is slow

Modified: trunk/Source/WebCore/platform/chromium/TraceEvent.h (128136 => 128137)


--- trunk/Source/WebCore/platform/chromium/TraceEvent.h	2012-09-11 00:50:33 UTC (rev 128136)
+++ trunk/Source/WebCore/platform/chromium/TraceEvent.h	2012-09-11 01:19:31 UTC (rev 128137)
@@ -403,18 +403,18 @@
 // ASYNC_BEGIN event above. The |step| param identifies this step within the
 // async event. This should be called at the beginning of the next phase of an
 // asynchronous operation.
-#define TRACE_EVENT_ASYNC_BEGIN_STEP0(category, name, id, step) \
+#define TRACE_EVENT_ASYNC_STEP0(category, name, id, step) \
     INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP, \
         category, name, id, TRACE_EVENT_FLAG_NONE, "step", step)
-#define TRACE_EVENT_ASYNC_BEGIN_STEP1(category, name, id, step, \
+#define TRACE_EVENT_ASYNC_STEP1(category, name, id, step, \
                                       arg1_name, arg1_val) \
     INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP, \
         category, name, id, TRACE_EVENT_FLAG_NONE, "step", step, \
         arg1_name, arg1_val)
-#define TRACE_EVENT_COPY_ASYNC_BEGIN_STEP0(category, name, id, step) \
+#define TRACE_EVENT_COPY_ASYNC_STEP0(category, name, id, step) \
     INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP, \
         category, name, id, TRACE_EVENT_FLAG_COPY, "step", step)
-#define TRACE_EVENT_COPY_ASYNC_BEGIN_STEP1(category, name, id, step, \
+#define TRACE_EVENT_COPY_ASYNC_STEP1(category, name, id, step, \
         arg1_name, arg1_val) \
     INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP, \
         category, name, id, TRACE_EVENT_FLAG_COPY, "step", step, \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to