#ifndef CHROME_BROWSER_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_
#define CHROME_BROWSER_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chrome/browser/chrome_browser_main_extra_parts.h"
class ChromeBrowserMainParts;
namespace chrome {
void AddProfilesExtraParts(ChromeBrowserMainParts* main_parts);
}
class ChromeBrowserMainExtraPartsProfiles : public ChromeBrowserMainExtraParts {
public:
ChromeBrowserMainExtraPartsProfiles();
virtual ~ChromeBrowserMainExtraPartsProfiles();
static void EnsureBrowserContextKeyedServiceFactoriesBuilt();
virtual void PreProfileInit() OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsProfiles);
};
#endif