chromium/chrome/browser/extensions/google_docs_offline_ukm_browsertest.cc

// Copyright 2019 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/extensions/extension_browsertest.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/ukm/test_ukm_recorder.h"
#include "content/public/test/browser_test.h"
#include "services/metrics/public/cpp/ukm_builders.h"

namespace extensions {

// Loads a page that imports a script from Google Docs Offline extension and
// checks for UKM collection.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest,
                       TestGoogleDocsOfflineExtensionResourceImport) {}

// Loads a page that fetches a script from Google Docs Offline extension and
// checks for UKM collection.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest,
                       TestGoogleDocsOfflineExtensionResourceFetch) {}

// Loads a page that imports a script from an extension other than Google Docs
// Offline and checks for UKM collection.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest,
                       TestNoneGoogleDocsOfflineExtensionResourceUse) {}

}  // namespace extensions