core_tab_helper_delegate.cc revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h"
6
7CoreTabHelperDelegate::~CoreTabHelperDelegate() {
8}
9
10void CoreTabHelperDelegate::SwapTabContents(
11    content::WebContents* old_contents,
12    content::WebContents* new_contents,
13    bool did_start_load,
14    bool did_finish_load) {
15}
16
17bool CoreTabHelperDelegate::CanReloadContents(
18    content::WebContents* web_contents) const {
19  return true;
20}
21
22bool CoreTabHelperDelegate::CanSaveContents(
23    content::WebContents* web_contents) const {
24  return true;
25}
26