summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profiles/profile_manager.cc
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-17 06:06:15 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-17 06:06:15 +0000
commite4de6b5d0a654164e312f6213d81c41df7ca5eed (patch)
tree04e72943e8b22305d6aeee85c288987ebd3dce33 /chrome/browser/profiles/profile_manager.cc
parent383a0ca55d444ac67c9be491f74e591b7c1ccea7 (diff)
downloadchromium_src-e4de6b5d0a654164e312f6213d81c41df7ca5eed.zip
chromium_src-e4de6b5d0a654164e312f6213d81c41df7ca5eed.tar.gz
chromium_src-e4de6b5d0a654164e312f6213d81c41df7ca5eed.tar.bz2
chrome: Remove 11 exit time destructors and 4 static initializers.
BUG=101600,94925 TEST=none TBR=erg,willchan Review URL: http://codereview.chromium.org/8590003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110447 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles/profile_manager.cc')
-rw-r--r--chrome/browser/profiles/profile_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
index ae4fb09..9c058de 100644
--- a/chrome/browser/profiles/profile_manager.cc
+++ b/chrome/browser/profiles/profile_manager.cc
@@ -53,7 +53,7 @@ namespace {
// Profiles that should be deleted on shutdown.
std::vector<FilePath>& ProfilesToDelete() {
- static std::vector<FilePath> profiles_to_delete;
+ CR_DEFINE_STATIC_LOCAL(std::vector<FilePath>, profiles_to_delete, ());
return profiles_to_delete;
}