Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h

Issue 1758313002: DevTools: introduce collections shim to be backed by non-wtf in v8_inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 void reportExecutionContextCreated(v8::Local<v8::Context>, const String& typ e, const String& origin, const String& humanReadableName, const String& frameId) override; 129 void reportExecutionContextCreated(v8::Local<v8::Context>, const String& typ e, const String& origin, const String& humanReadableName, const String& frameId) override;
130 void reportExecutionContextDestroyed(v8::Local<v8::Context>) override; 130 void reportExecutionContextDestroyed(v8::Local<v8::Context>) override;
131 PassOwnPtr<protocol::Runtime::ExceptionDetails> createExceptionDetails(v8::I solate*, v8::Local<v8::Message>); 131 PassOwnPtr<protocol::Runtime::ExceptionDetails> createExceptionDetails(v8::I solate*, v8::Local<v8::Message>);
132 132
133 Client* m_client; 133 Client* m_client;
134 protocol::DictionaryValue* m_state; 134 protocol::DictionaryValue* m_state;
135 protocol::Frontend::Runtime* m_frontend; 135 protocol::Frontend::Runtime* m_frontend;
136 OwnPtr<InjectedScriptManager> m_injectedScriptManager; 136 OwnPtr<InjectedScriptManager> m_injectedScriptManager;
137 V8DebuggerImpl* m_debugger; 137 V8DebuggerImpl* m_debugger;
138 bool m_enabled; 138 bool m_enabled;
139 HashMap<String, OwnPtr<v8::Global<v8::Script>>> m_compiledScripts; 139 protocol::HashMap<String, OwnPtr<v8::Global<v8::Script>>> m_compiledScripts;
140 }; 140 };
141 141
142 } // namespace blink 142 } // namespace blink
143 143
144 #endif // V8RuntimeAgentImpl_h 144 #endif // V8RuntimeAgentImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698