OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ppapi/shared_impl/ppapi_globals.h" | 5 #include "ppapi/shared_impl/ppapi_globals.h" |
6 | 6 |
7 #include "base/lazy_instance.h" // For testing purposes only. | 7 #include "base/lazy_instance.h" // For testing purposes only. |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
10 #include "base/threading/thread_local.h" // For testing purposes only. | 10 #include "base/threading/thread_local.h" // For testing purposes only. |
11 | 11 |
12 namespace ppapi { | 12 namespace ppapi { |
13 | 13 |
14 namespace { | 14 namespace { |
15 // Thread-local globals for testing. See SetPpapiGlobalsOnThreadForTest for more | 15 // Thread-local globals for testing. See SetPpapiGlobalsOnThreadForTest for more |
16 // information. | 16 // information. |
17 base::LazyInstance<base::ThreadLocalPointer<PpapiGlobals> >::Leaky | 17 base::LazyInstance<base::ThreadLocalPointer<PpapiGlobals> >::Leaky |
18 tls_ppapi_globals_for_test = LAZY_INSTANCE_INITIALIZER; | 18 tls_ppapi_globals_for_test = LAZY_INSTANCE_INITIALIZER; |
19 } // namespace | 19 } // namespace |
20 | 20 |
21 PpapiGlobals* PpapiGlobals::ppapi_globals_ = NULL; | 21 PpapiGlobals* PpapiGlobals::ppapi_globals_ = NULL; |
22 | 22 |
23 PpapiGlobals::PpapiGlobals() { | 23 PpapiGlobals::PpapiGlobals() { |
24 DCHECK(!ppapi_globals_); | 24 DCHECK(!ppapi_globals_); |
25 ppapi_globals_ = this; | 25 ppapi_globals_ = this; |
26 message_loop_proxy_ = base::MessageLoopProxy::current(); | 26 main_loop_proxy_ = base::MessageLoopProxy::current(); |
27 } | 27 } |
28 | 28 |
29 PpapiGlobals::PpapiGlobals(ForTest) { | 29 PpapiGlobals::PpapiGlobals(ForTest) { |
30 DCHECK(!ppapi_globals_); | 30 DCHECK(!ppapi_globals_); |
31 message_loop_proxy_ = base::MessageLoopProxy::current(); | 31 main_loop_proxy_ = base::MessageLoopProxy::current(); |
32 } | 32 } |
33 | 33 |
34 PpapiGlobals::~PpapiGlobals() { | 34 PpapiGlobals::~PpapiGlobals() { |
35 DCHECK(ppapi_globals_ == this || !ppapi_globals_); | 35 DCHECK(ppapi_globals_ == this || !ppapi_globals_); |
36 ppapi_globals_ = NULL; | 36 ppapi_globals_ = NULL; |
37 } | 37 } |
38 | 38 |
39 // static | 39 // static |
40 void PpapiGlobals::SetPpapiGlobalsOnThreadForTest(PpapiGlobals* ptr) { | 40 void PpapiGlobals::SetPpapiGlobalsOnThreadForTest(PpapiGlobals* ptr) { |
41 // If we're using a per-thread PpapiGlobals, we should not have a global one. | 41 // If we're using a per-thread PpapiGlobals, we should not have a global one. |
42 // If we allowed it, it would always over-ride the "test" versions. | 42 // If we allowed it, it would always over-ride the "test" versions. |
43 DCHECK(!ppapi_globals_); | 43 DCHECK(!ppapi_globals_); |
44 tls_ppapi_globals_for_test.Pointer()->Set(ptr); | 44 tls_ppapi_globals_for_test.Pointer()->Set(ptr); |
45 } | 45 } |
46 | 46 |
47 base::MessageLoopProxy* PpapiGlobals::GetMainThreadMessageLoop() { | 47 base::MessageLoopProxy* PpapiGlobals::GetMainThreadMessageLoop() { |
48 return message_loop_proxy_.get(); | 48 return main_loop_proxy_.get(); |
49 } | 49 } |
50 | 50 |
51 bool PpapiGlobals::IsHostGlobals() const { | 51 bool PpapiGlobals::IsHostGlobals() const { |
52 return false; | 52 return false; |
53 } | 53 } |
54 | 54 |
55 bool PpapiGlobals::IsPluginGlobals() const { | 55 bool PpapiGlobals::IsPluginGlobals() const { |
56 return false; | 56 return false; |
57 } | 57 } |
58 | 58 |
59 // static | 59 // static |
60 PpapiGlobals* PpapiGlobals::GetThreadLocalPointer() { | 60 PpapiGlobals* PpapiGlobals::GetThreadLocalPointer() { |
61 return tls_ppapi_globals_for_test.Pointer()->Get(); | 61 return tls_ppapi_globals_for_test.Pointer()->Get(); |
62 } | 62 } |
63 | 63 |
64 } // namespace ppapi | 64 } // namespace ppapi |
OLD | NEW |