chromium/chrome/browser/dom_distiller/test_distillation_observers.cc

// Copyright 2021 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/dom_distiller/test_distillation_observers.h"
#include "components/dom_distiller/core/url_constants.h"
#include "url/gurl.h"

namespace dom_distiller {

void OriginalPageNavigationObserver::DidFinishLoad(
    content::RenderFrameHost* render_frame_host,
    const GURL& validated_url) {}

void DistilledPageObserver::DidFinishLoad(
    content::RenderFrameHost* render_frame_host,
    const GURL& validated_url) {}

void DistilledPageObserver::TitleWasSet(content::NavigationEntry* entry) {}

void DistilledPageObserver::MaybeNotifyLoaded() {}

}  // namespace dom_distiller