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" |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 task.Run(); | 72 task.Run(); |
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 // static |
| 83 AtExitManager* AtExitManager::current() { |
| 84 return g_top_manager; |
| 85 } |
| 86 |
| 87 size_t AtExitManager::CallbackStackSize() const { |
| 88 return stack_.size(); |
| 89 } |
| 90 |
82 } // namespace base | 91 } // namespace base |
OLD | NEW |