#ifndef CHROME_BROWSER_ASH_INPUT_METHOD_ASSISTIVE_PREFS_H_
#define CHROME_BROWSER_ASH_INPUT_METHOD_ASSISTIVE_PREFS_H_
#include <string>
#include "chrome/browser/ash/input_method/suggester.h"
#include "components/prefs/pref_service.h"
namespace ash {
namespace input_method {
bool IsPredictiveWritingPrefEnabled(const PrefService& pref_service,
const std::string& engine_id);
bool IsDiacriticsOnLongpressPrefEnabled(PrefService* pref_service,
const std::string& engine_id);
int GetPrefValue(const std::string& pref_name, Profile& profile);
void IncrementPrefValueUntilCapped(const std::string& pref_name,
int max_value,
Profile& profile);
}
}
#endif