summaryrefslogtreecommitdiffstats
path: root/content/public/renderer/render_thread.cc
blob: ea04fd2a3392da3035ae4944413442e814261420 (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
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// 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/lazy_instance.h"
#include "base/threading/thread_local.h"

namespace content {

// Keep the global RenderThread in a TLS slot so it is impossible to access
// incorrectly from the wrong thread.
static base::LazyInstance<base::ThreadLocalPointer<RenderThread> > lazy_tls(
    base::LINKER_INITIALIZED);

RenderThread* RenderThread::Get() {
  return lazy_tls.Pointer()->Get();
}

RenderThread::RenderThread() {
  lazy_tls.Pointer()->Set(this);
}

RenderThread::~RenderThread() {
  lazy_tls.Pointer()->Set(NULL);
}

}  // namespace content