// Copyright (c) 2011 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. #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_OBSERVER_H_ #define CHROME_BROWSER_PRERENDER_PRERENDER_OBSERVER_H_ #include "content/browser/tab_contents/tab_contents_observer.h" #include "base/time.h" class TabContentsWrapper; class GURL; namespace prerender { class PrerenderContents; class PrerenderManager; // PrerenderObserver is responsible for recording perceived pageload times // to compare PLT's with prerendering enabled and disabled. class PrerenderObserver : public TabContentsObserver { public: explicit PrerenderObserver(TabContentsWrapper* tab); virtual ~PrerenderObserver(); // TabContentsObserver implementation. virtual void ProvisionalChangeToMainFrameUrl(const GURL& url, bool has_opener_set) OVERRIDE; virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; virtual void DidStopLoading() OVERRIDE; // Called when this prerendered TabContents has just been swapped in. void PrerenderSwappedIn(); private: // The data we store for a hover (time the hover occurred & URL). class HoverData; // Message handler. void OnDidStartProvisionalLoadForFrame(int64 frame_id, bool main_frame, bool has_opener_set, const GURL& url); void OnMsgUpdateTargetURL(int32 page_id, const GURL& url); // Retrieves the PrerenderManager, or NULL, if none was found. PrerenderManager* MaybeGetPrerenderManager(); // Checks with the PrerenderManager if the specified URL has been preloaded, // and if so, swap the RenderViewHost with the preload into this TabContents // object. bool MaybeUsePrerenderedPage(const GURL& url, bool has_opener_set); // Returns whether the TabContents being observed is currently prerendering. bool IsPrerendering(); // Records histogram information for the current hover, based on whether // it was used or not. Will not do anything if there is no current hover. // Also resets the hover to no hover. void MaybeLogCurrentHover(bool was_used); // TabContentsWrapper we're created for. TabContentsWrapper* tab_; // System time at which the current load was started for the purpose of // the perceived page load time (PPLT). base::TimeTicks pplt_load_start_; // Information about the last hover for each hover threshold. scoped_array last_hovers_; // Information about the current hover independent of thresholds. GURL current_hover_url_; base::TimeTicks current_hover_time_; DISALLOW_COPY_AND_ASSIGN(PrerenderObserver); }; } // namespace prerender #endif // CHROME_BROWSER_PRERENDER_PRERENDER_OBSERVER_H_