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

Unified Diff: content/browser/renderer_host/text_input_client_mac.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/text_input_client_mac.h
diff --git a/content/browser/renderer_host/text_input_client_mac.h b/content/browser/renderer_host/text_input_client_mac.h
index 4e50eff5c7e39c0fc8e9227154c945ba16aa5bce..d682ebdf60e6ae1eabd7084680de97b7d27aeba3 100644
--- a/content/browser/renderer_host/text_input_client_mac.h
+++ b/content/browser/renderer_host/text_input_client_mac.h
@@ -14,7 +14,10 @@
#include "content/common/content_export.h"
#include "ui/gfx/geometry/point.h"
-template <typename T> struct DefaultSingletonTraits;
+namespace base {
+template <typename T>
+struct DefaultSingletonTraits;
+} // namespace base
namespace content {
class RenderWidgetHost;
@@ -82,7 +85,7 @@ class CONTENT_EXPORT TextInputClientMac {
void GetStringAtPointReply(NSAttributedString*, NSPoint);
private:
- friend struct DefaultSingletonTraits<TextInputClientMac>;
+ friend struct base::DefaultSingletonTraits<TextInputClientMac>;
TextInputClientMac();
~TextInputClientMac();
« no previous file with comments | « content/browser/renderer_host/renderer_frame_manager.cc ('k') | content/browser/renderer_host/text_input_client_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698