[email protected] | 5a3b914 | 2009-08-28 21:03:17 | [diff] [blame] | 1 | // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 4 | |
| 5 | // PageNavigator defines an interface that can be used to express the user's |
| 6 | // intention to navigate to a particular URL. The implementing class should |
| 7 | // perform the navigation. |
| 8 | |
[email protected] | 5632b20 | 2009-01-16 19:20:56 | [diff] [blame] | 9 | #ifndef CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_ |
| 10 | #define CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_ |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 11 | |
| 12 | #include "chrome/common/page_transition_types.h" |
| 13 | #include "webkit/glue/window_open_disposition.h" |
| 14 | |
| 15 | class GURL; |
| 16 | |
| 17 | class PageNavigator { |
| 18 | public: |
| 19 | // Opens a URL with the given disposition. The transition specifies how this |
| 20 | // navigation should be recorded in the history system (for example, typed). |
[email protected] | c058805 | 2008-10-27 23:01:50 | [diff] [blame] | 21 | virtual void OpenURL(const GURL& url, const GURL& referrer, |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 22 | WindowOpenDisposition disposition, |
| 23 | PageTransition::Type transition) = 0; |
| 24 | }; |
| 25 | |
[email protected] | 5632b20 | 2009-01-16 19:20:56 | [diff] [blame] | 26 | #endif // CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_ |