| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index edc832629104b122a1061ef1ab7d83866a03ebe4..7d1f835aa10c4844f2342a4a5cc0cf37951dc604 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -111,9 +111,6 @@ void ThreadLocalTop::Free() {
|
| base::Thread::LocalStorageKey Isolate::isolate_key_;
|
| base::Thread::LocalStorageKey Isolate::thread_id_key_;
|
| base::Thread::LocalStorageKey Isolate::per_isolate_thread_data_key_;
|
| -#ifdef DEBUG
|
| -base::Thread::LocalStorageKey PerThreadAssertScopeBase::thread_local_key;
|
| -#endif // DEBUG
|
| base::LazyMutex Isolate::thread_data_table_mutex_ = LAZY_MUTEX_INITIALIZER;
|
| Isolate::ThreadDataTable* Isolate::thread_data_table_ = NULL;
|
| base::Atomic32 Isolate::isolate_counter_ = 0;
|
| @@ -158,10 +155,6 @@ void Isolate::InitializeOncePerProcess() {
|
| isolate_key_ = base::Thread::CreateThreadLocalKey();
|
| thread_id_key_ = base::Thread::CreateThreadLocalKey();
|
| per_isolate_thread_data_key_ = base::Thread::CreateThreadLocalKey();
|
| -#ifdef DEBUG
|
| - PerThreadAssertScopeBase::thread_local_key =
|
| - base::Thread::CreateThreadLocalKey();
|
| -#endif // DEBUG
|
| thread_data_table_ = new Isolate::ThreadDataTable();
|
| }
|
|
|
|
|