summaryrefslogtreecommitdiffstats
path: root/chrome/browser/content_settings/tab_specific_content_settings.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/content_settings/tab_specific_content_settings.cc')
-rw-r--r--chrome/browser/content_settings/tab_specific_content_settings.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/content_settings/tab_specific_content_settings.cc b/chrome/browser/content_settings/tab_specific_content_settings.cc
index f1905b6..09735ce 100644
--- a/chrome/browser/content_settings/tab_specific_content_settings.cc
+++ b/chrome/browser/content_settings/tab_specific_content_settings.cc
@@ -199,7 +199,7 @@ const std::set<std::string>&
if (blocked_resources_[content_type].get()) {
return *blocked_resources_[content_type];
} else {
- CR_DEFINE_STATIC_LOCAL(std::set<std::string>, empty_set, ());
+ static std::set<std::string> empty_set;
return empty_set;
}
}