Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: chrome/browser/tab_contents/page_navigator.h

Issue 6537015: Start moving core pieces of Chrome multi-process code to src\content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 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
9 #ifndef CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_
10 #define CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_
11 #pragma once 7 #pragma once
12 8
13 #include "chrome/common/page_transition_types.h" 9 // TODO(jam): remove this file when all files have been converted.
14 #include "webkit/glue/window_open_disposition.h" 10 #include "content/browser/tab_contents/page_navigator.h"
15
16 class GURL;
17
18 class PageNavigator {
19 public:
20 // Opens a URL with the given disposition. The transition specifies how this
21 // navigation should be recorded in the history system (for example, typed).
22 virtual void OpenURL(const GURL& url, const GURL& referrer,
23 WindowOpenDisposition disposition,
24 PageTransition::Type transition) = 0;
25
26 protected:
27 virtual ~PageNavigator() {}
28 };
29 11
30 #endif // CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_ 12 #endif // CHROME_BROWSER_TAB_CONTENTS_PAGE_NAVIGATOR_H_
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/navigation_entry_unittest.cc ('k') | chrome/browser/tab_contents/provisional_load_details.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698