| Index: content/renderer/render_thread_impl.h
|
| diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
|
| index c285e527a434853675e4f31e15450860f4bc4d17..085aec3f4e28fc7ca027d1f9df08c4caca138db8 100644
|
| --- a/content/renderer/render_thread_impl.h
|
| +++ b/content/renderer/render_thread_impl.h
|
| @@ -29,6 +29,8 @@
|
| #include "content/common/storage_partition_service.mojom.h"
|
| #include "content/public/renderer/render_thread.h"
|
| #include "content/renderer/gpu/compositor_dependencies.h"
|
| +#include "content/renderer/render_thread_blame_context.h"
|
| +#include "content/renderer/web_blame_context_impl.h"
|
| #include "net/base/network_change_notifier.h"
|
| #include "third_party/WebKit/public/platform/WebConnectionType.h"
|
| #include "ui/gfx/native_widget_types.h"
|
| @@ -458,6 +460,8 @@ class CONTENT_EXPORT RenderThreadImpl
|
|
|
| StoragePartitionService* GetStoragePartitionService();
|
|
|
| + RenderThreadBlameContext* blame_context() { return &blame_context_; }
|
| +
|
| protected:
|
| RenderThreadImpl(const InProcessChildThreadParams& params,
|
| scoped_ptr<scheduler::RendererScheduler> scheduler);
|
| @@ -708,6 +712,8 @@ class CONTENT_EXPORT RenderThreadImpl
|
|
|
| StoragePartitionServicePtr storage_partition_service_;
|
|
|
| + RenderThreadBlameContext blame_context_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
|
| };
|
|
|
|
|