| Index: third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h | 
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h | 
| index a9d75e4d8812d3d4001fe96ded603c4daef0fcc0..9e8e7b4a11be00ce13746fc12705ae723fe88693 100644 | 
| --- a/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h | 
| +++ b/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h | 
| @@ -102,7 +102,7 @@ private: | 
| protocol::DictionaryValue* eventListenerBreakpoints(); | 
| protocol::DictionaryValue* xhrBreakpoints(); | 
|  | 
| -    void descriptionForDOMEvent(Node* target, int breakpointType, bool insertion, protocol::DictionaryValue* description); | 
| +    void breakProgramOnDOMEvent(Node* target, int breakpointType, bool insertion); | 
| void updateSubtreeBreakpoints(Node*, uint32_t rootMask, bool set); | 
| bool hasBreakpoint(Node*, int type); | 
| void setBreakpoint(ErrorString*, const String& eventName, const String& targetName); | 
| @@ -112,8 +112,8 @@ private: | 
| void didRemoveBreakpoint(); | 
| void setEnabled(bool); | 
|  | 
| -    void eventListeners(v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& objectGroup, protocol::Array<protocol::DOMDebugger::EventListener>* listenersArray); | 
| -    std::unique_ptr<protocol::DOMDebugger::EventListener> buildObjectForEventListener(v8::Local<v8::Context>, const V8EventListenerInfo&, const String16& objectGroupId); | 
| +    void eventListeners(v8::Local<v8::Context>, v8::Local<v8::Value>, const String& objectGroup, protocol::Array<protocol::DOMDebugger::EventListener>* listenersArray); | 
| +    std::unique_ptr<protocol::DOMDebugger::EventListener> buildObjectForEventListener(v8::Local<v8::Context>, const V8EventListenerInfo&, const String& objectGroupId); | 
|  | 
| v8::Isolate* m_isolate; | 
| Member<InspectorDOMAgent> m_domAgent; | 
|  |