[email protected] | 6ea6bdf | 2013-12-06 13:35:01 | [diff] [blame^] | 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 | #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 | |
| 12 | namespace content { |
| 13 | |
| 14 | class NavigationControllerImpl; |
| 15 | class NavigatorDelegate; |
| 16 | |
| 17 | // This class is an implementation of Navigator, responsible for managing |
| 18 | // navigations in regular browser tabs. |
| 19 | class 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_ |