Home | History | Annotate | Download | only in tab_contents
      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 }
     14 
     15 bool CoreTabHelperDelegate::CanReloadContents(
     16     content::WebContents* web_contents) const {
     17   return true;
     18 }
     19 
     20 bool CoreTabHelperDelegate::CanSaveContents(
     21     content::WebContents* web_contents) const {
     22   return true;
     23 }
     24