summaryrefslogtreecommitdiffstats
path: root/content/browser/tab_contents/page_navigator.cc
blob: a7bcca3ba25ee866feb2329e9ee8b8621f6f3316 (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
// 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 "content/browser/tab_contents/page_navigator.h"

#include "content/common/page_transition_types.h"
#include "webkit/glue/window_open_disposition.h"

class GURL;

OpenURLParams::OpenURLParams(
    const GURL& url,
    const GURL& referrer,
    WindowOpenDisposition disposition,
    PageTransition::Type transition)
    : url(url),
      referrer(referrer),
      disposition(disposition),
      transition(transition) {
}

OpenURLParams::OpenURLParams() {
}

OpenURLParams::~OpenURLParams() {
}