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

Unified Diff: chrome/browser/devtools/device/devtools_android_bridge.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: chrome/browser/devtools/device/devtools_android_bridge.h
diff --git a/chrome/browser/devtools/device/devtools_android_bridge.h b/chrome/browser/devtools/device/devtools_android_bridge.h
index b112ff9b6621157709e68c7ed58027c7554b0943..3b989a3a0a1d9b0827f5b94dc0efce0dbe45db9f 100644
--- a/chrome/browser/devtools/device/devtools_android_bridge.h
+++ b/chrome/browser/devtools/device/devtools_android_bridge.h
@@ -20,14 +20,14 @@
#include "content/public/browser/devtools_agent_host.h"
#include "ui/gfx/geometry/size.h"
+namespace base {
template<typename T> struct DefaultSingletonTraits;
-namespace base {
class MessageLoop;
class DictionaryValue;
class ListValue;
class Thread;
-}
+} // namespace base
namespace content {
class BrowserContext;
@@ -51,7 +51,7 @@ class DevToolsAndroidBridge : public KeyedService {
static DevToolsAndroidBridge* GetForProfile(Profile* profile);
private:
- friend struct DefaultSingletonTraits<Factory>;
+ friend struct base::DefaultSingletonTraits<Factory>;
Factory();
~Factory() override;

Powered by Google App Engine
This is Rietveld 408576698