Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Unified Diff: content/browser/bootstrap_sandbox_mac.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/bootstrap_sandbox_mac.cc
diff --git a/content/browser/bootstrap_sandbox_mac.cc b/content/browser/bootstrap_sandbox_mac.cc
index e50f2f5ffac13773deb7b0393c9100644f9b6b2e..82864a393fc43ea423231d1e1dfae7f7b660296d 100644
--- a/content/browser/bootstrap_sandbox_mac.cc
+++ b/content/browser/bootstrap_sandbox_mac.cc
@@ -36,7 +36,7 @@ class BootstrapSandboxPolicy : public BrowserChildProcessObserver {
int exit_code) override;
private:
- friend struct DefaultSingletonTraits<BootstrapSandboxPolicy>;
+ friend struct base::DefaultSingletonTraits<BootstrapSandboxPolicy>;
BootstrapSandboxPolicy();
~BootstrapSandboxPolicy() override;
@@ -46,7 +46,7 @@ class BootstrapSandboxPolicy : public BrowserChildProcessObserver {
};
BootstrapSandboxPolicy* BootstrapSandboxPolicy::GetInstance() {
- return Singleton<BootstrapSandboxPolicy>::get();
+ return base::Singleton<BootstrapSandboxPolicy>::get();
}
void BootstrapSandboxPolicy::BrowserChildProcessHostDisconnected(
« no previous file with comments | « content/browser/android/in_process_surface_texture_manager.cc ('k') | content/browser/browser_io_surface_manager_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698