In your Activity or Service, add
ContentResolver cR = getContentResolver();
if(Browser.canClearHistory(cR)){
Browser.clearHistory(cR);
Browser.clearSearches(cR);
}
where Browser is the android.provider.Browser class.
This will clear the default browser's history.