| Index: src/inspector/InspectedContext.h
|
| diff --git a/src/inspector/InspectedContext.h b/src/inspector/InspectedContext.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2b743a559a110bcb1cbd054ad92623c6fc44befb
|
| --- /dev/null
|
| +++ b/src/inspector/InspectedContext.h
|
| @@ -0,0 +1,64 @@
|
| +// Copyright 2016 the V8 project authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef V8_INSPECTOR_INSPECTEDCONTEXT_H_
|
| +#define V8_INSPECTOR_INSPECTEDCONTEXT_H_
|
| +
|
| +#include "src/inspector/Allocator.h"
|
| +#include "src/inspector/String16.h"
|
| +
|
| +#include <v8.h>
|
| +
|
| +namespace v8_inspector {
|
| +
|
| +class InjectedScript;
|
| +class InjectedScriptHost;
|
| +class V8ContextInfo;
|
| +class V8InspectorImpl;
|
| +
|
| +class InspectedContext {
|
| + V8_INSPECTOR_DISALLOW_COPY(InspectedContext);
|
| +
|
| + public:
|
| + ~InspectedContext();
|
| +
|
| + v8::Local<v8::Context> context() const;
|
| + int contextId() const { return m_contextId; }
|
| + int contextGroupId() const { return m_contextGroupId; }
|
| + String16 origin() const { return m_origin; }
|
| + String16 humanReadableName() const { return m_humanReadableName; }
|
| + String16 auxData() const { return m_auxData; }
|
| +
|
| + bool isReported() const { return m_reported; }
|
| + void setReported(bool reported) { m_reported = reported; }
|
| +
|
| + v8::Isolate* isolate() const;
|
| + V8InspectorImpl* inspector() const { return m_inspector; }
|
| +
|
| + InjectedScript* getInjectedScript() { return m_injectedScript.get(); }
|
| + void createInjectedScript();
|
| + void discardInjectedScript();
|
| +
|
| + private:
|
| + friend class V8InspectorImpl;
|
| + InspectedContext(V8InspectorImpl*, const V8ContextInfo&, int contextId);
|
| + static void weakCallback(const v8::WeakCallbackInfo<InspectedContext>&);
|
| + static void consoleWeakCallback(
|
| + const v8::WeakCallbackInfo<InspectedContext>&);
|
| +
|
| + V8InspectorImpl* m_inspector;
|
| + v8::Global<v8::Context> m_context;
|
| + int m_contextId;
|
| + int m_contextGroupId;
|
| + const String16 m_origin;
|
| + const String16 m_humanReadableName;
|
| + const String16 m_auxData;
|
| + bool m_reported;
|
| + std::unique_ptr<InjectedScript> m_injectedScript;
|
| + v8::Global<v8::Object> m_console;
|
| +};
|
| +
|
| +} // namespace v8_inspector
|
| +
|
| +#endif // V8_INSPECTOR_INSPECTEDCONTEXT_H_
|
|
|