| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/at_exit.h" | 5 #include "base/at_exit.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <ostream> | 8 #include <ostream> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/callback.h" |
| 11 #include "base/logging.h" | 12 #include "base/logging.h" |
| 12 #include "base/task.h" | |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 | 15 |
| 16 // Keep a stack of registered AtExitManagers. We always operate on the most | 16 // Keep a stack of registered AtExitManagers. We always operate on the most |
| 17 // recent, and we should never have more than one outside of testing (for a | 17 // recent, and we should never have more than one outside of testing (for a |
| 18 // statically linked version of this library). Testing may use the shadow | 18 // statically linked version of this library). Testing may use the shadow |
| 19 // version of the constructor, and if we are building a dynamic library we may | 19 // version of the constructor, and if we are building a dynamic library we may |
| 20 // end up with multiple AtExitManagers on the same process. We don't protect | 20 // end up with multiple AtExitManagers on the same process. We don't protect |
| 21 // this for thread-safe access, since it will only be modified in testing. | 21 // this for thread-safe access, since it will only be modified in testing. |
| 22 static AtExitManager* g_top_manager = NULL; | 22 static AtExitManager* g_top_manager = NULL; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 g_top_manager->stack_.pop(); | 73 g_top_manager->stack_.pop(); |
| 74 } | 74 } |
| 75 } | 75 } |
| 76 | 76 |
| 77 AtExitManager::AtExitManager(bool shadow) : next_manager_(g_top_manager) { | 77 AtExitManager::AtExitManager(bool shadow) : next_manager_(g_top_manager) { |
| 78 DCHECK(shadow || !g_top_manager); | 78 DCHECK(shadow || !g_top_manager); |
| 79 g_top_manager = this; | 79 g_top_manager = this; |
| 80 } | 80 } |
| 81 | 81 |
| 82 } // namespace base | 82 } // namespace base |
| OLD | NEW |