| Index: runtime/bin/eventhandler_linux.h | 
| diff --git a/runtime/bin/eventhandler_linux.h b/runtime/bin/eventhandler_linux.h | 
| index ac46454641b75c7f149394e769437e8f8efa95c7..5386eb61b17b369e0846be2145684331d5bd9414 100644 | 
| --- a/runtime/bin/eventhandler_linux.h | 
| +++ b/runtime/bin/eventhandler_linux.h | 
| @@ -23,9 +23,9 @@ namespace bin { | 
|  | 
| class DescriptorInfo : public DescriptorInfoBase { | 
| public: | 
| -  explicit DescriptorInfo(intptr_t fd) : DescriptorInfoBase(fd) { } | 
| +  explicit DescriptorInfo(intptr_t fd) : DescriptorInfoBase(fd) {} | 
|  | 
| -  virtual ~DescriptorInfo() { } | 
| +  virtual ~DescriptorInfo() {} | 
|  | 
| intptr_t GetPollEvents(); | 
|  | 
| @@ -39,8 +39,7 @@ class DescriptorInfo : public DescriptorInfoBase { | 
| }; | 
|  | 
|  | 
| -class DescriptorInfoSingle | 
| -    : public DescriptorInfoSingleMixin<DescriptorInfo> { | 
| +class DescriptorInfoSingle : public DescriptorInfoSingleMixin<DescriptorInfo> { | 
| public: | 
| explicit DescriptorInfoSingle(intptr_t fd) | 
| : DescriptorInfoSingleMixin(fd, false) {} | 
| @@ -68,7 +67,7 @@ class EventHandlerImplementation { | 
| EventHandlerImplementation(); | 
| ~EventHandlerImplementation(); | 
|  | 
| -  void UpdateEpollInstance(intptr_t old_mask, DescriptorInfo *di); | 
| +  void UpdateEpollInstance(intptr_t old_mask, DescriptorInfo* di); | 
|  | 
| // Gets the socket data structure for a given file | 
| // descriptor. Creates a new one if one is not found. | 
|  |