| Index: chrome/browser/load_from_memory_cache_details.cc
|
| diff --git a/chrome/browser/load_from_memory_cache_details.cc b/chrome/browser/load_from_memory_cache_details.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2791020f98f79081c20519e16aa6db3f837825c0
|
| --- /dev/null
|
| +++ b/chrome/browser/load_from_memory_cache_details.cc
|
| @@ -0,0 +1,23 @@
|
| +// 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 "chrome/browser/load_from_memory_cache_details.h"
|
| +
|
| +LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
|
| + const GURL& url,
|
| + const std::string& frame_origin,
|
| + const std::string& main_frame_origin,
|
| + int pid,
|
| + int cert_id,
|
| + int cert_status)
|
| + : url_(url),
|
| + frame_origin_(frame_origin),
|
| + main_frame_origin_(main_frame_origin),
|
| + pid_(pid),
|
| + cert_id_(cert_id),
|
| + cert_status_(cert_status) {
|
| +}
|
| +
|
| +LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
|
| +}
|
|
|