This source file includes following definitions.
- SwapTabContents
- CanReloadContents
- CanSaveContents
#include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h"
CoreTabHelperDelegate::~CoreTabHelperDelegate() {
}
void CoreTabHelperDelegate::SwapTabContents(
content::WebContents* old_contents,
content::WebContents* new_contents,
bool did_start_load,
bool did_finish_load) {
}
bool CoreTabHelperDelegate::CanReloadContents(
content::WebContents* web_contents) const {
return true;
}
bool CoreTabHelperDelegate::CanSaveContents(
content::WebContents* web_contents) const {
return true;
}