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

Side by Side Diff: chrome/browser/page_load_metrics/page_load_metrics_embedder_interface.h

Issue 2435233002: Factor PageLoadTracker into its own header and impl files. (Closed)
Patch Set: share IsNavigationUserInitiated impl Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_PAGE_LOAD_METRICS_PAGE_LOAD_METRICS_EMBEDDER_INTERFACE_H_
6 #define CHROME_BROWSER_PAGE_LOAD_METRICS_PAGE_LOAD_METRICS_EMBEDDER_INTERFACE_H_
7
8 class GURL;
9
10 namespace content {
11 class WebContents;
12 } // namespace content
13
14 namespace page_load_metrics {
15
16 class PageLoadTracker;
17
18 // This class serves as a functional interface to various chrome// features.
19 // Impl version is defined in chrome/browser/page_load_metrics.
20 class PageLoadMetricsEmbedderInterface {
21 public:
22 virtual ~PageLoadMetricsEmbedderInterface() {}
23 virtual bool IsPrerendering(content::WebContents* web_contents) = 0;
24 virtual bool IsNewTabPageUrl(const GURL& url) = 0;
25 virtual void RegisterObservers(PageLoadTracker* metrics) = 0;
26 };
27
28 } // namespace page_load_metrics
29
30 #endif // CHROME_BROWSER_PAGE_LOAD_METRICS_PAGE_LOAD_METRICS_EMBEDDER_INTERFACE _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698