[Webkit-unassigned] [Bug 62777] [EFL][WK2] Add RunLoopEfl and WorkQueueEfl

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jun 17 01:30:43 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=62777





--- Comment #11 from YoungTaeck Song <youngtaeck.song at samsung.com>  2011-06-17 01:30:42 PST ---
(In reply to comment #9)
> (From update of attachment 97412 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=97412&action=review
> 
> > Source/WebKit2/Platform/WorkQueue.h:222
> > +        public:
> > +            WorkItemEfl(PassOwnPtr<WorkItem> item, WorkQueue* queue) : m_item(item), m_queue(queue) { }
> > +            ~WorkItemEfl() { }
> > +    
> > +            WorkItem* item() const { return m_item.get(); }
> > +            WorkQueue* queue() const { return m_queue; }
> > +    
> > +        private:
> > +            OwnPtr<WorkItem> m_item;
> > +            WorkQueue* m_queue;
> > +    };
> > +    
> > +    class FdWorkItem : public WorkItemEfl {
> > +        public:
> > +            FdWorkItem(int fd, PassOwnPtr<WorkItem> item, WorkQueue* queue)   
> > +                : WorkItemEfl(item, queue), m_fd(fd) { }
> > +            ~FdWorkItem() { }
> > +            int fd() const { return m_fd; }
> > +    
> > +        private:
> > +            int m_fd;
> > +    };
> > +    
> > +    class TermWorkItem : public WorkItemEfl {
> > +        public:
> > +            TermWorkItem(int pid, PassOwnPtr<WorkItem> item, WorkQueue* queue)
> > +                : WorkItemEfl(item, queue), m_pid(pid) { }
> > +            ~TermWorkItem() { }
> > +            int pid() const { return m_pid; }
> > +    
> > +        private:
> > +            int m_pid;
> > +    };
> 
> The public: and private: should not be indented.  We also traditionally put each line of the initialization syntax on its own line.

Thanks. I'll fix it at the next patch

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list