diff options
Diffstat (limited to 'chrome/browser/intents')
-rw-r--r-- | chrome/browser/intents/web_intents_registry_factory.cc | 4 | ||||
-rw-r--r-- | chrome/browser/intents/web_intents_registry_factory.h | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/intents/web_intents_registry_factory.cc b/chrome/browser/intents/web_intents_registry_factory.cc index 94d869f..f6e75c9 100644 --- a/chrome/browser/intents/web_intents_registry_factory.cc +++ b/chrome/browser/intents/web_intents_registry_factory.cc @@ -2,9 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "chrome/browser/intents/web_intents_registry_factory.h" + +#include "base/memory/singleton.h" #include "chrome/browser/extensions/extension_system_factory.h" #include "chrome/browser/intents/web_intents_registry.h" -#include "chrome/browser/intents/web_intents_registry_factory.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/profiles/profile_dependency_manager.h" diff --git a/chrome/browser/intents/web_intents_registry_factory.h b/chrome/browser/intents/web_intents_registry_factory.h index 7a90da8..e40495b 100644 --- a/chrome/browser/intents/web_intents_registry_factory.h +++ b/chrome/browser/intents/web_intents_registry_factory.h @@ -1,16 +1,17 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_INTENTS_WEB_INTENTS_REGISTRY_FACTORY_H_ #define CHROME_BROWSER_INTENTS_WEB_INTENTS_REGISTRY_FACTORY_H_ -#include "base/logging.h" -#include "base/memory/singleton.h" +#include "base/basictypes.h" +#include "base/compiler_specific.h" #include "chrome/browser/profiles/profile_keyed_service_factory.h" class Profile; class WebIntentsRegistry; +template <typename T> struct DefaultSingletonTraits; // Singleton that owns all WebIntentsRegistrys and associates them with // Profiles. Listens for the Profile's destruction notification and cleans up |