blob: 2bfc842e599a42fbef2ffb1522a7f366e8d4f641 [file] [log] [blame]
[email protected]6ea6bdf2013-12-06 13:35:011// 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#ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
6#define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
7
8#include "base/memory/ref_counted.h"
9#include "content/browser/frame_host/navigator.h"
10#include "content/common/content_export.h"
11
12namespace content {
13
14class NavigationControllerImpl;
15class NavigatorDelegate;
16
17// This class is an implementation of Navigator, responsible for managing
18// navigations in regular browser tabs.
19class CONTENT_EXPORT NavigatorImpl : public Navigator {
20 public:
21 NavigatorImpl(NavigationControllerImpl* navigation_controller,
22 NavigatorDelegate* delegate);
23
24 private:
25 virtual ~NavigatorImpl() {}
26
27 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl);
28};
29
30} // namespace content
31
32#endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_