chromium/chrome/browser/ui/views/frame/top_container_loading_bar.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/ui/views/frame/top_container_loading_bar.h"

#include "chrome/browser/favicon/favicon_utils.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/color/chrome_color_id.h"
#include "chrome/browser/ui/tab_ui_helper.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/color/color_provider.h"
#include "ui/compositor/layer.h"
#include "ui/gfx/animation/tween.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_palette.h"

LoadingBarView::LoadingBarView() {}

double LoadingBarView::GetDisplayedLoadingProgress() const {}

void LoadingBarView::OnThemeChanged() {}

void LoadingBarView::AddedToWidget() {}

void LoadingBarView::HideImmediately() {}

void LoadingBarView::Show(double loading_progress) {}

void LoadingBarView::FinishLoading() {}

void LoadingBarView::SetLoadingProgress(double loading_progress) {}

void LoadingBarView::OnPaint(gfx::Canvas* canvas) {}

void LoadingBarView::AnimationEnded(const gfx::Animation* animation) {}

void LoadingBarView::AnimationProgressed(const gfx::Animation* animation) {}

BEGIN_METADATA()

TopContainerLoadingBar::TopContainerLoadingBar(Browser* browser)
    :{}

void TopContainerLoadingBar::SetWebContents(
    content::WebContents* web_contents) {}

void TopContainerLoadingBar::UpdateLoadingProgress() {}

double TopContainerLoadingBar::GetLoadingProgress() const {}

void TopContainerLoadingBar::LoadProgressChanged(double progress) {}

BEGIN_METADATA()