core_tab_helper_delegate.cc revision 5821806d5e7f356e8fa4b058a389a808ea183019
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}
14
15bool CoreTabHelperDelegate::CanReloadContents(
16    content::WebContents* web_contents) const {
17  return true;
18}
19
20bool CoreTabHelperDelegate::CanSaveContents(
21    content::WebContents* web_contents) const {
22  return true;
23}
24