diff options
Diffstat (limited to 'base/at_exit.cc')
-rw-r--r-- | base/at_exit.cc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/base/at_exit.cc b/base/at_exit.cc index 5423ede..0fba355 100644 --- a/base/at_exit.cc +++ b/base/at_exit.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -79,13 +79,4 @@ AtExitManager::AtExitManager(bool shadow) : next_manager_(g_top_manager) { g_top_manager = this; } -// static -AtExitManager* AtExitManager::current() { - return g_top_manager; -} - -size_t AtExitManager::CallbackStackSize() const { - return stack_.size(); -} - } // namespace base |