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

Side by Side Diff: chrome/browser/tab_contents/navigation_metrics_recorder.h

Issue 10831048: Record navigations by URL scheme. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove PowerSaveBlocker Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/tab_contents/navigation_metrics_recorder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 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_TAB_CONTENTS_NAVIGATION_METRICS_RECORDER_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_METRICS_RECORDER_H_
7
8 #include "content/public/browser/web_contents_observer.h"
9
10 class NavigationMetricsRecorder : public content::WebContentsObserver {
11 public:
12 explicit NavigationMetricsRecorder(content::WebContents* web_contents);
13 virtual ~NavigationMetricsRecorder();
14
15 private:
16 // content::WebContentsObserver overrides:
17 virtual void DidNavigateMainFrame(
18 const content::LoadCommittedDetails& details,
19 const content::FrameNavigateParams& params) OVERRIDE;
20
21 DISALLOW_COPY_AND_ASSIGN(NavigationMetricsRecorder);
22 };
23
24 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_METRICS_RECORDER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/tab_contents/navigation_metrics_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698