 Chromium Code Reviews
 Chromium Code Reviews Issue 775763007:
  Use event init dictionary in modules/device_light  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 775763007:
  Use event init dictionary in modules/device_light  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| Index: Source/core/events/Event.h | 
| diff --git a/Source/core/events/Event.h b/Source/core/events/Event.h | 
| index 39a8e0596b09d772579d9ce982f6f5657663fd85..0dbe2ac9156830b4c94b35522b19de5c45988060 100644 | 
| --- a/Source/core/events/Event.h | 
| +++ b/Source/core/events/Event.h | 
| @@ -197,6 +197,8 @@ protected: | 
| virtual void receivedTarget(); | 
| bool dispatched() const { return m_target; } | 
| + void setCanBubble(bool bubble) { m_canBubble = bubble; } | 
| + | 
| private: | 
| AtomicString m_type; | 
| bool m_canBubble; |