void FrameLoaderClientAndroid::setTitle(const String& title, const KURL& url) {
    // Not needed. dispatchDidReceiveTitle is called immediately after this.
    // url is used to update the Apple port history items.
    verifiedOk();
}
bool FrameLoaderClientAndroid::representationExistsForURLScheme(const String&) const {
    // don't use representation
    verifiedOk();
    return false;
}
void FrameLoaderClientAndroid::prepareForDataSourceReplacement() {
    verifiedOk();
}
void FrameLoaderClientAndroid::willChangeTitle(DocumentLoader*) {
    verifiedOk();
}
void FrameLoaderClientAndroid::didChangeTitle(DocumentLoader* loader) {
    verifiedOk();
}
void FrameLoaderClientAndroid::dispatchDidCommitLoad() {
    verifiedOk();
}
// This function is called after the progress has been updated. The bad part
// about this is that when a page is completed, this function is called after
// the progress has been reset to 0.
void FrameLoaderClientAndroid::didChangeEstimatedProgress() {
    verifiedOk();
}
void FrameLoaderClientAndroid::makeRepresentation(DocumentLoader*) {
    m_onDemandPluginsEnabled = false;
    // don't use representation
    verifiedOk();
}
void FrameLoaderClientAndroid::setCopiesOnScroll() {
    // this is a hint about whether we need to force redraws, or can
    // just copy the scrolled content. Since we always force a redraw
    // anyways, we can ignore this call.
    verifiedOk();
}
// This is the string that appears before an input box when the HTML element
// <ISINDEX> is used. The returned string is used if no PROMPT attribute is
// provided.
// note: Safari and FireFox use (too long for us imho) "This is a searchable index. Enter search keywords:"
String searchableIndexIntroduction()
{
    verifiedOk();
    return String("Enter search:");
}
// This function provides the default value for the CSS property:
// -webkit-focus-ring-color
// It is also related to the CSS property outline-color:
Color focusRingColor()
{
    verifiedOk();
    return 0xFF0000FF;
}
String resetButtonDefaultLabel()
{
    verifiedOk();
    return "Reset";
}
// The following functions are used to fetch localized text for HTML form
// elements submit and reset. These strings are used when the page author
// has not specified any text for these buttons.
String submitButtonDefaultLabel()
{
    verifiedOk();
    return "Submit";
}
void refreshPlugins(bool)
{
    verifiedOk();
}
bool PluginInfoStore::supportsMIMEType(const String&)
{
    verifiedOk();
    return false;
}
unsigned PluginInfoStore::pluginCount() const
{
    verifiedOk();
    return 0;
}