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

Unified Diff: content/browser/renderer_host/render_sandbox_host_linux.h

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/renderer_host/render_sandbox_host_linux.h
diff --git a/content/browser/renderer_host/render_sandbox_host_linux.h b/content/browser/renderer_host/render_sandbox_host_linux.h
index c7f4aeb01f286f60d47f86c7f453407cb6a9d0a8..a9f8a021d0087a4ea1d8f49d2a2a72c7cede2433 100644
--- a/content/browser/renderer_host/render_sandbox_host_linux.h
+++ b/content/browser/renderer_host/render_sandbox_host_linux.h
@@ -13,7 +13,9 @@
#include "content/browser/renderer_host/sandbox_ipc_linux.h"
#include "content/common/content_export.h"
+namespace base {
template <typename T> struct DefaultSingletonTraits;
+}
namespace content {
@@ -33,7 +35,7 @@ class CONTENT_EXPORT RenderSandboxHostLinux {
void Init();
private:
- friend struct DefaultSingletonTraits<RenderSandboxHostLinux>;
+ friend struct base::DefaultSingletonTraits<RenderSandboxHostLinux>;
// This object must be constructed on the main thread.
RenderSandboxHostLinux();
~RenderSandboxHostLinux();

Powered by Google App Engine
This is Rietveld 408576698