| Index: content/browser/tab_contents/tab_contents_observer.h
|
| ===================================================================
|
| --- content/browser/tab_contents/tab_contents_observer.h (revision 110851)
|
| +++ content/browser/tab_contents/tab_contents_observer.h (working copy)
|
| @@ -13,8 +13,11 @@
|
| #include "webkit/glue/window_open_disposition.h"
|
|
|
| class RenderViewHost;
|
| -struct ViewHostMsg_FrameNavigate_Params;
|
|
|
| +namespace content {
|
| +struct FrameNavigateParams;
|
| +}
|
| +
|
| // An observer API implemented by classes which are interested in various page
|
| // load events from TabContents. They also get a chance to filter IPC messages.
|
| class CONTENT_EXPORT TabContentsObserver : public IPC::Channel::Listener,
|
| @@ -29,10 +32,10 @@
|
| NavigationController::ReloadType reload_type);
|
| virtual void DidNavigateMainFrame(
|
| const content::LoadCommittedDetails& details,
|
| - const ViewHostMsg_FrameNavigate_Params& params);
|
| + const content::FrameNavigateParams& params);
|
| virtual void DidNavigateAnyFrame(
|
| const content::LoadCommittedDetails& details,
|
| - const ViewHostMsg_FrameNavigate_Params& params);
|
| + const content::FrameNavigateParams& params);
|
| // |render_view_host| is the RenderViewHost for which the provisional load is
|
| // happening.
|
| virtual void DidStartProvisionalLoadForFrame(
|
|
|