summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/renderer/render_thread.cc
blob: e43b7ed18143597db0e2a8e12dcc5f1ad5076f94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/public/renderer/render_thread.h"

#include "base/no_destructor.h"
#include "base/threading/thread_checker_impl.h"
#include "third_party/abseil-cpp/absl/base/attributes.h"

namespace content {

namespace {

// Keep the global RenderThread in a TLS slot so it is impossible to access
// incorrectly from the wrong thread.
ABSL_CONST_INIT thread_local RenderThread* render_thread = nullptr;

static const base::ThreadCheckerImpl& GetThreadChecker() {
  static base::NoDestructor<base::ThreadCheckerImpl> checker;
  return *checker;
}

}  // namespace

RenderThread* RenderThread::Get() {
  return render_thread;
}

bool RenderThread::IsMainThread() {
  // TODO(avi): Eventually move to be based on WTF::IsMainThread().
  return GetThreadChecker().CalledOnValidThread();
}

RenderThread::RenderThread() : resetter_(&render_thread, this) {}

RenderThread::~RenderThread() = default;

}  // namespace content