chromium/chrome/browser/ui/bookmarks/bookmark_stats_tab_helper.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/bookmarks/bookmark_stats_tab_helper.h"

#include "base/metrics/histogram_functions.h"
#include "base/time/time.h"
#include "content/public/browser/navigation_handle.h"

BookmarkStatsTabHelper::~BookmarkStatsTabHelper() = default;

bool BookmarkStatsTabHelper::SetLaunchAction(
    const BookmarkLaunchAction& launch_action,
    WindowOpenDisposition tab_disposition) {}

void BookmarkStatsTabHelper::DidStartNavigation(
    content::NavigationHandle* navigation_handle) {}

void BookmarkStatsTabHelper::DidFinishNavigation(
    content::NavigationHandle* navigation_handle) {}

void BookmarkStatsTabHelper::DidFirstVisuallyNonEmptyPaint() {}

BookmarkStatsTabHelper::BookmarkStatsTabHelper(
    content::WebContents* web_contents)
    :{}

WEB_CONTENTS_USER_DATA_KEY_IMPL(BookmarkStatsTabHelper);