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

Unified Diff: chrome/browser/policy/profile_policy_connector_factory.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/policy/profile_policy_connector_factory.h
diff --git a/chrome/browser/policy/profile_policy_connector_factory.h b/chrome/browser/policy/profile_policy_connector_factory.h
index 1080a4c0e8063f442ddea8eec7cc6707c531612e..42ad65a3113a5c3ee53b0cefc0f680ca3d327f87 100644
--- a/chrome/browser/policy/profile_policy_connector_factory.h
+++ b/chrome/browser/policy/profile_policy_connector_factory.h
@@ -12,12 +12,12 @@
#include "base/memory/scoped_ptr.h"
#include "components/keyed_service/content/browser_context_keyed_base_factory.h"
+namespace base {
template <typename T>
struct DefaultSingletonTraits;
-namespace base {
class SequencedTaskRunner;
-}
+} // namespace base
namespace content {
class BrowserContext;
@@ -63,7 +63,7 @@ class ProfilePolicyConnectorFactory : public BrowserContextKeyedBaseFactory {
void PushProviderForTesting(ConfigurationPolicyProvider* provider);
private:
- friend struct DefaultSingletonTraits<ProfilePolicyConnectorFactory>;
+ friend struct base::DefaultSingletonTraits<ProfilePolicyConnectorFactory>;
ProfilePolicyConnectorFactory();
~ProfilePolicyConnectorFactory() override;

Powered by Google App Engine
This is Rietveld 408576698