navigator.cc revision f2477e01787aa58f445919b809d89e252beef54f
1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "content/browser/frame_host/navigator.h"
6
7#include "content/browser/frame_host/navigator_delegate.h"
8
9namespace content {
10
11Navigator::Navigator(
12    NavigationControllerImpl* nav_controller,
13    NavigatorDelegate* delegate)
14    : controller_(nav_controller),
15      delegate_(delegate) {
16}
17
18}  // namespace content
19