root/chrome/browser/ui/tab_contents/core_tab_helper_delegate.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. SwapTabContents
  2. CanReloadContents
  3. CanSaveContents

// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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;
}

/* [<][>][^][v][top][bottom][index][help] */