summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/page_navigator.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/tab_contents/page_navigator.h')
-rw-r--r--chrome/browser/tab_contents/page_navigator.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/page_navigator.h b/chrome/browser/tab_contents/page_navigator.h
new file mode 100644
index 0000000..0152d39
--- /dev/null
+++ b/chrome/browser/tab_contents/page_navigator.h
@@ -0,0 +1,27 @@
+// Copyright (c) 2006-2008 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.
+
+// PageNavigator defines an interface that can be used to express the user's
+// intention to navigate to a particular URL. The implementing class should
+// perform the navigation.
+
+#ifndef CHROME_BROWSER_PAGE_NAVIGATOR_H__
+#define CHROME_BROWSER_PAGE_NAVIGATOR_H__
+
+#include "chrome/common/page_transition_types.h"
+#include "webkit/glue/window_open_disposition.h"
+
+class GURL;
+
+class PageNavigator {
+ public:
+ // Opens a URL with the given disposition. The transition specifies how this
+ // navigation should be recorded in the history system (for example, typed).
+ virtual void OpenURL(const GURL& url, const GURL& referrer,
+ WindowOpenDisposition disposition,
+ PageTransition::Type transition) = 0;
+};
+
+#endif // CHROME_BROWSER_PAGE_NAVIGATOR_H__
+