| 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 main_loop_proxy_ = base::MessageLoopProxy::current(); | 26 main_loop_proxy_ = base::MessageLoopProxy::current(); |
| 27 } | 27 } |
| 28 | 28 |
| 29 PpapiGlobals::PpapiGlobals(ForTest) { | 29 PpapiGlobals::PpapiGlobals(PerThreadForTest) { |
| 30 DCHECK(!ppapi_globals_); | 30 DCHECK(!ppapi_globals_); |
| 31 main_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 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 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 |