Index: third_party/WebKit/Source/platform/v8_inspector/V8AsyncCallTracker.h |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8AsyncCallTracker.h b/third_party/WebKit/Source/platform/v8_inspector/V8AsyncCallTracker.h |
index 9de313ea5211382df4e268359fd0a6b5eb22bea4..9af348d4ccc31a56abda8a044cc6b08f8791533f 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8AsyncCallTracker.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8AsyncCallTracker.h |
@@ -26,13 +26,13 @@ public: |
void asyncCallTrackingStateChanged(bool tracking); |
void resetAsyncOperations(); |
- void didReceiveV8AsyncTaskEvent(v8::Local<v8::Context>, const String& eventType, const String& eventName, int id); |
+ void didReceiveV8AsyncTaskEvent(v8::Local<v8::Context>, const String16& eventType, const String16& eventName, int id); |
void contextDisposed(int contextId); |
private: |
struct Operations { |
- protocol::HashMap<String, int> map; |
+ protocol::HashMap<String16, int> map; |
int contextId; |
V8AsyncCallTracker* target; |
v8::Global<v8::Context> context; |
@@ -42,9 +42,9 @@ private: |
explicit V8AsyncCallTracker(V8DebuggerAgentImpl*); |
- void didEnqueueV8AsyncTask(v8::Local<v8::Context>, const String& eventName, int id); |
- void willHandleV8AsyncTask(v8::Local<v8::Context>, const String& eventName, int id); |
- void completeOperations(const protocol::HashMap<String, int>& contextCallChains); |
+ void didEnqueueV8AsyncTask(v8::Local<v8::Context>, const String16& eventName, int id); |
+ void willHandleV8AsyncTask(v8::Local<v8::Context>, const String16& eventName, int id); |
+ void completeOperations(const protocol::HashMap<String16, int>& contextCallChains); |
V8DebuggerAgentImpl* m_debuggerAgent; |
protocol::HashMap<int, OwnPtr<Operations>> m_idToOperations; |