[webkit-reviews] review denied: [Bug 95923] [EFL] Implement GCActivityCallback with platform timer : [Attachment 162393] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 6 17:37:00 PDT 2012


Gyuyoung Kim <gyuyoung.kim at samsung.com> has denied hojong.han at samsung.com's
request for review:
Bug 95923: [EFL] Implement GCActivityCallback with platform timer
https://bugs.webkit.org/show_bug.cgi?id=95923

Attachment 162393: Patch
https://bugs.webkit.org/attachment.cgi?id=162393&action=review

------- Additional Comments from Gyuyoung Kim <gyuyoung.kim at samsung.com>
View in context: https://bugs.webkit.org/attachment.cgi?id=162393&action=review


> Source/JavaScriptCore/PlatformEfl.cmake:2
> +    runtime/GCActivityCallback.cpp

In this file case, I think we're able to remove this file in CMakeLists.txt.
Then, we can add a port specific file to PlatformXXX.cmake by port itself. So,
I'm going to file a bug for this.

> Source/JavaScriptCore/PlatformEfl.cmake:10
> +    runtime/GCActivityCallbackEfl.cpp

Wrong alphabetical order.

> Source/JavaScriptCore/PlatformEfl.cmake:19
> +    ${ECORE_X_INCLUDE_DIRS}

ditto.

> Source/JavaScriptCore/heap/HeapTimer.cpp:147
> +	   ecore_timer_del(m_timer);

A new line ?

> Source/JavaScriptCore/heap/HeapTimer.h:77
> +    Ecore_Timer* m_timer;

Can't you use OwnPtr here ? If you can use OwnPtr for this, you'd be able to
remove most of the checks for m_timer as well as calls to ecore_timer_del() in
this patch.

See also, RunLoopEfl.h / cpp.


More information about the webkit-reviews mailing list