#ifndef CHROME_BROWSER_SYNC_GLUE_THEME_DATA_TYPE_CONTROLLER_H_
#define CHROME_BROWSER_SYNC_GLUE_THEME_DATA_TYPE_CONTROLLER_H_
#include "chrome/browser/sync/glue/ui_data_type_controller.h"
namespace browser_sync {
class ThemeDataTypeController : public UIDataTypeController {
public:
ThemeDataTypeController(
ProfileSyncComponentsFactory* profile_sync_factory,
Profile* profile,
ProfileSyncService* sync_service);
private:
virtual ~ThemeDataTypeController();
virtual bool StartModels() OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(ThemeDataTypeController);
};
}
#endif