#ifndef CHROME_BROWSER_NEW_TAB_PAGE_MODULES_NEW_TAB_PAGE_MODULES_H_
#define CHROME_BROWSER_NEW_TAB_PAGE_MODULES_NEW_TAB_PAGE_MODULES_H_
#include <string>
#include <utility>
#include <vector>
namespace signin {
class IdentityManager;
}
class Profile;
namespace ntp {
const std::vector<std::pair<const std::string, int>> MakeModuleIdNames(
bool is_managed_profile,
Profile* profile);
bool HasModulesEnabled(
std::vector<std::pair<const std::string, int>> module_id_names,
signin::IdentityManager* identity_manager);
}
#endif