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

Unified Diff: chrome/browser/prerender/prerender_contents.h

Issue 9270018: Make a separate histogram for MatchComplete Final Status'es and (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: chrome/browser/prerender/prerender_contents.h
===================================================================
--- chrome/browser/prerender/prerender_contents.h (revision 118385)
+++ chrome/browser/prerender/prerender_contents.h (working copy)
@@ -81,6 +81,12 @@
};
typedef std::list<PendingPrerenderData> PendingPrerenderList;
+ enum MatchCompleteStatus {
dominich 2012/01/20 22:23:37 Needs a comment explaining what this is.
tburkard 2012/01/20 23:23:00 Done.
+ MC_DEFAULT,
+ MC_REPLACED,
+ MC_REPLACEMENT
+ };
+
virtual ~PrerenderContents();
bool Init();
@@ -106,6 +112,8 @@
const content::Referrer& referrer() const { return referrer_; }
bool has_stopped_loading() const { return has_stopped_loading_; }
bool prerendering_has_started() const { return prerendering_has_started_; }
+ MatchCompleteStatus mc_status() const { return mc_status_; }
dominich 2012/01/20 22:23:37 This is more of a style question: If the get and s
tburkard 2012/01/20 23:23:00 In general that's not the way things are usually d
+ void set_mc_status(MatchCompleteStatus status) { mc_status_ = status; }
// Sets the parameter to the value of the associated RenderViewHost's child id
// and returns a boolean indicating the validity of that id.
@@ -269,6 +277,8 @@
bool prerendering_has_started_;
+ MatchCompleteStatus mc_status_;
dominich 2012/01/20 22:23:37 Needs a comment explaining what it is.
dominich 2012/01/20 22:23:37 mc_status_ should be match_complete_status_
tburkard 2012/01/20 23:23:00 Done.
tburkard 2012/01/20 23:23:00 Since this is used so frequently, mc_status is muc
+
// Tracks whether or not prerendering has been cancelled by calling Destroy.
// Used solely to prevent double deletion.
bool prerendering_has_been_cancelled_;

Powered by Google App Engine
This is Rietveld 408576698