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

Unified Diff: chrome/browser/net/predictor_tab_helper.h

Issue 16514008: Add metrics for calculating precision/recall of link navigation pre-connect triggers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 7 years, 6 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/net/predictor_tab_helper.h
diff --git a/chrome/browser/net/predictor_tab_helper.h b/chrome/browser/net/predictor_tab_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..b8a01d21dd0ba829d18617e6967d5a41ff077df5
--- /dev/null
+++ b/chrome/browser/net/predictor_tab_helper.h
@@ -0,0 +1,41 @@
+// Copyright 2013 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_NET_PREDICTOR_TAB_HELPER_H_
+#define CHROME_BROWSER_NET_PREDICTOR_TAB_HELPER_H_
+
+#include "content/public/browser/notification_observer.h"
+#include "content/public/browser/notification_registrar.h"
+#include "content/public/browser/web_contents_observer.h"
+#include "content/public/browser/web_contents_user_data.h"
+
+namespace chrome_browser_net {
+
+class PredictorTabHelper
+ : public content::NotificationObserver,
+ public content::WebContentsUserData<PredictorTabHelper> {
+ public:
+ virtual ~PredictorTabHelper();
+
+ // content::NotificationObserver implementation
+ virtual void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) OVERRIDE;
+
+ private:
+ explicit PredictorTabHelper(content::WebContents* web_contents);
+ friend class content::WebContentsUserData<PredictorTabHelper>;
+
+ void DidNavigation(const GURL& url, const GURL& original_url);
+
+ content::NotificationRegistrar registrar_;
+
+ content::WebContents* const web_contents_;
+
+ DISALLOW_COPY_AND_ASSIGN(PredictorTabHelper);
+};
+
+} // namespace chrome_browser_net
+
+#endif // CHROME_BROWSER_NET_PREDICTOR_TAB_HELPER_H_

Powered by Google App Engine
This is Rietveld 408576698