Index: chrome/browser/browser_about_handler.cc |
diff --git a/chrome/browser/browser_about_handler.cc b/chrome/browser/browser_about_handler.cc |
index de02f041d63df3b0efcc2f11d3e8ae4416f6112b..52932f5a2bde27ce26ebbaea64cce414c2c2351e 100644 |
--- a/chrome/browser/browser_about_handler.cc |
+++ b/chrome/browser/browser_about_handler.cc |
@@ -88,9 +88,14 @@ using base::Time; |
using base::TimeDelta; |
#if defined(USE_TCMALLOC) |
+// static |
+AboutTcmallocOutputs* AboutTcmallocOutputs::GetInstance() { |
+ return Singleton<AboutTcmallocOutputs>::get(); |
+} |
+ |
// Glue between the callback task and the method in the singleton. |
void AboutTcmallocRendererCallback(base::ProcessId pid, std::string output) { |
- Singleton<AboutTcmallocOutputs>::get()->RendererCallback(pid, output); |
+ AboutTcmallocOutputs::GetInstance()->RendererCallback(pid, output); |
} |
#endif |
@@ -364,7 +369,7 @@ class AboutDnsHandler : public base::RefCountedThreadSafe<AboutDnsHandler> { |
std::string AboutTcmalloc(const std::string& query) { |
std::string data; |
AboutTcmallocOutputsType* outputs = |
- Singleton<AboutTcmallocOutputs>::get()->outputs(); |
+ AboutTcmallocOutputs::GetInstance()->outputs(); |
// Display any stats for which we sent off requests the last time. |
data.append("<html><head><title>About tcmalloc</title></head><body>\n"); |
@@ -392,7 +397,7 @@ std::string AboutTcmalloc(const std::string& query) { |
char buffer[1024 * 32]; |
MallocExtension::instance()->GetStats(buffer, sizeof(buffer)); |
std::string browser("Browser"); |
- Singleton<AboutTcmallocOutputs>::get()->SetOutput(browser, buffer); |
+ AboutTcmallocOutputs::GetInstance()->SetOutput(browser, buffer); |
RenderProcessHost::iterator it(RenderProcessHost::AllHostsIterator()); |
while (!it.IsAtEnd()) { |
it.GetCurrentValue()->Send(new ViewMsg_GetRendererTcmalloc); |
@@ -590,7 +595,7 @@ std::string AboutSandbox() { |
data.append(l10n_util::GetStringUTF8(IDS_ABOUT_SANDBOX_TITLE)); |
data.append("</h1>"); |
- const int status = Singleton<ZygoteHost>()->sandbox_status(); |
+ const int status = ZygoteHost::GetInstance()->sandbox_status(); |
data.append("<table>"); |
@@ -831,7 +836,7 @@ AboutSource::AboutSource() |
BrowserThread::PostTask( |
BrowserThread::IO, FROM_HERE, |
NewRunnableMethod( |
- Singleton<ChromeURLDataManager>::get(), |
+ ChromeURLDataManager::GetInstance(), |
&ChromeURLDataManager::AddDataSource, |
make_scoped_refptr(this))); |
} |