summaryrefslogtreecommitdiffstats
path: root/chrome/browser/load_from_memory_cache_details.h
blob: c990ae105b0b3c05f21208116e7ccdc9383c2596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) 2006-2008 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.

#ifndef CHROME_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H__
#define CHROME_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H__

#include "base/basictypes.h"
#include "googleurl/src/gurl.h"

class LoadFromMemoryCacheDetails {
 public:
  LoadFromMemoryCacheDetails(const GURL& url, int cert_id, int cert_status)
      : url_(url),
        cert_id_(cert_id),
        cert_status_(cert_status)
  { }

  ~LoadFromMemoryCacheDetails() { }

  const GURL& url() const { return url_; }
  int ssl_cert_id() const { return cert_id_; }
  int ssl_cert_status() const { return cert_status_; }

private:
  GURL url_;
  int cert_id_;
  int cert_status_;

  DISALLOW_EVIL_CONSTRUCTORS(LoadFromMemoryCacheDetails);
};

#endif  // CHROME_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H__