summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer')
-rw-r--r--chrome/renderer/plugins/plugin_uma.cc2
-rw-r--r--chrome/renderer/plugins/plugin_uma.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/plugins/plugin_uma.cc b/chrome/renderer/plugins/plugin_uma.cc
index 9272d3c..60d2597 100644
--- a/chrome/renderer/plugins/plugin_uma.cc
+++ b/chrome/renderer/plugins/plugin_uma.cc
@@ -62,7 +62,7 @@ void UMASenderImpl::SendPluginUMA(PluginUMAReporter::ReportType report_type,
// static.
PluginUMAReporter* PluginUMAReporter::GetInstance() {
- return Singleton<PluginUMAReporter>::get();
+ return base::Singleton<PluginUMAReporter>::get();
}
void PluginUMAReporter::ReportPluginMissing(const std::string& plugin_mime_type,
diff --git a/chrome/renderer/plugins/plugin_uma.h b/chrome/renderer/plugins/plugin_uma.h
index 6dbef19..5954199 100644
--- a/chrome/renderer/plugins/plugin_uma.h
+++ b/chrome/renderer/plugins/plugin_uma.h
@@ -59,7 +59,7 @@ class PluginUMAReporter {
const GURL& plugin_src);
private:
- friend struct DefaultSingletonTraits<PluginUMAReporter>;
+ friend struct base::DefaultSingletonTraits<PluginUMAReporter>;
friend class PluginUMATest;
PluginUMAReporter();