diff options
author | groby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-04 00:46:50 +0000 |
---|---|---|
committer | groby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-04 00:46:50 +0000 |
commit | 0b5e24fdd3af01f2b775b011754cde8599fda761 (patch) | |
tree | 4e20caae9b622ee92891eb6358802150ace89c73 /chrome/browser/intents | |
parent | 5d0fbd9e5b6bdb1fae1ac71a9b44fe3646763cb3 (diff) | |
download | chromium_src-0b5e24fdd3af01f2b775b011754cde8599fda761.zip chromium_src-0b5e24fdd3af01f2b775b011754cde8599fda761.tar.gz chromium_src-0b5e24fdd3af01f2b775b011754cde8599fda761.tar.bz2 |
IWYU fix
R=jhawkins@chromium.org
BUG=
TEST=
Review URL: http://codereview.chromium.org/9969085
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130529 0039d316-1c4b-4281-b951-d872f2087c98
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 |