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

Unified Diff: content/browser/tab_contents/navigation_controller_impl.h

Issue 9146028: Define the public interface for content browser SiteInstance. This interface is implemented by th... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/tab_contents/navigation_controller_impl.h
===================================================================
--- content/browser/tab_contents/navigation_controller_impl.h (revision 118952)
+++ content/browser/tab_contents/navigation_controller_impl.h (working copy)
@@ -14,13 +14,13 @@
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_type.h"
-class SiteInstance;
class TabContents;
struct ViewHostMsg_FrameNavigate_Params;
namespace content {
class NavigationEntryImpl;
struct LoadCommittedDetails;
+class SiteInstance;
}
class CONTENT_EXPORT NavigationControllerImpl
@@ -100,13 +100,14 @@
// Return the index of the entry with the corresponding instance and page_id,
// or -1 if not found.
- int GetEntryIndexWithPageID(SiteInstance* instance,
+ int GetEntryIndexWithPageID(content::SiteInstance* instance,
int32 page_id) const;
// Return the entry with the corresponding instance and page_id, or NULL if
// not found.
- content::NavigationEntryImpl* GetEntryWithPageID(SiteInstance* instance,
- int32 page_id) const;
+ content::NavigationEntryImpl* GetEntryWithPageID(
+ content::SiteInstance* instance,
+ int32 page_id) const;
// Transient entry -----------------------------------------------------------
« no previous file with comments | « content/browser/tab_contents/interstitial_page.cc ('k') | content/browser/tab_contents/navigation_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698