root/webkit/browser/appcache/mock_appcache_policy.cc

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

DEFINITIONS

This source file includes following definitions.
  1. can_create_return_value_
  2. CanLoadAppCache
  3. CanCreateAppCache

// Copyright (c) 2011 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 "webkit/browser/appcache/mock_appcache_policy.h"

namespace appcache {

MockAppCachePolicy::MockAppCachePolicy()
    : can_load_return_value_(true), can_create_return_value_(true) {
}

MockAppCachePolicy::~MockAppCachePolicy() {
}

bool MockAppCachePolicy::CanLoadAppCache(const GURL& manifest_url,
                                         const GURL& first_party) {
  requested_manifest_url_ = manifest_url;
  return can_load_return_value_;
}

bool MockAppCachePolicy::CanCreateAppCache(const GURL& manifest_url,
                                           const GURL& first_party) {
  requested_manifest_url_ = manifest_url;
  return can_create_return_value_;
}

}  // namespace appcache

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