summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webkit/appcache/appcache_storage_impl.cc2
-rw-r--r--webkit/plugins/npapi/webplugin_delegate_impl_mac.mm2
2 files changed, 2 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_storage_impl.cc b/webkit/appcache/appcache_storage_impl.cc
index 69911b7..c6f1849 100644
--- a/webkit/appcache/appcache_storage_impl.cc
+++ b/webkit/appcache/appcache_storage_impl.cc
@@ -791,7 +791,7 @@ class NetworkNamespaceHelper {
}
bool IsInNetworkNamespace(const GURL& url, int64 cache_id) {
- static const std::vector<GURL> kEmptyVector;
+ const std::vector<GURL> kEmptyVector;
typedef std::pair<WhiteListMap::iterator, bool> InsertResult;
InsertResult result = namespaces_map_.insert(
WhiteListMap::value_type(cache_id, kEmptyVector));
diff --git a/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm b/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm
index 945cfb0..8e0243a 100644
--- a/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm
+++ b/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm
@@ -706,7 +706,7 @@ void WebPluginDelegateImpl::WindowlessPaint(gfx::NativeDrawingContext context,
return;
DCHECK(!use_buffer_context_ || buffer_context_ == context);
- static base::StatsRate plugin_paint("Plugin.Paint");
+ base::StatsRate plugin_paint("Plugin.Paint");
base::StatsScope<base::StatsRate> scope(plugin_paint);
gfx::Rect paint_rect;