Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / tab_contents / core_tab_helper_delegate.cc
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
7 CoreTabHelperDelegate::~CoreTabHelperDelegate() {
8 }
9
10 void CoreTabHelperDelegate::SwapTabContents(
11     content::WebContents* old_contents,
12     content::WebContents* new_contents,
13     bool did_start_load,
14     bool did_finish_load) {
15 }
16
17 bool CoreTabHelperDelegate::CanReloadContents(
18     content::WebContents* web_contents) const {
19   return true;
20 }
21
22 bool CoreTabHelperDelegate::CanSaveContents(
23     content::WebContents* web_contents) const {
24   return true;
25 }