Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / chrome / browser / tab_contents / navigation_metrics_recorder.cc
blob1be27f0b9b0b922e2b9aee20bf5683103c8b31ff
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.
5 #include "chrome/browser/tab_contents/navigation_metrics_recorder.h"
7 #include "base/metrics/histogram.h"
8 #include "components/navigation_metrics/navigation_metrics.h"
9 #include "content/public/browser/navigation_details.h"
10 #include "content/public/browser/navigation_entry.h"
11 #include "content/public/browser/render_view_host.h"
12 #include "content/public/browser/render_widget_host_view.h"
14 #if defined(OS_WIN)
15 #include "base/win/windows_version.h"
16 #include "chrome/browser/metro_utils/metro_chrome_win.h"
17 #endif
19 DEFINE_WEB_CONTENTS_USER_DATA_KEY(NavigationMetricsRecorder);
21 NavigationMetricsRecorder::NavigationMetricsRecorder(
22 content::WebContents* web_contents)
23 : content::WebContentsObserver(web_contents) {
26 NavigationMetricsRecorder::~NavigationMetricsRecorder() {
29 void NavigationMetricsRecorder::DidNavigateMainFrame(
30 const content::LoadCommittedDetails& details,
31 const content::FrameNavigateParams& params) {
32 navigation_metrics::RecordMainFrameNavigation(details.entry->GetVirtualURL(),
33 details.is_in_page);
36 void NavigationMetricsRecorder::DidStartLoading() {
37 #if defined(OS_WIN) && defined(USE_ASH)
38 content::RenderViewHost* rvh = web_contents()->GetRenderViewHost();
40 if (rvh && base::win::GetVersion() >= base::win::VERSION_WIN8) {
41 content::RenderWidgetHostView* rwhv = rvh->GetView();
42 if (rwhv) {
43 gfx::NativeView native_view = rwhv->GetNativeView();
44 if (native_view) {
45 chrome::HostDesktopType desktop =
46 chrome::GetHostDesktopTypeForNativeView(native_view);
47 UMA_HISTOGRAM_ENUMERATION("Win8.PageLoad",
48 chrome::GetWin8Environment(desktop),
49 chrome::WIN_8_ENVIRONMENT_MAX);
53 #endif