chromium/third_party/blink/public/mojom/manifest/manifest_observer.mojom

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

module blink.mojom;

import "url/mojom/url.mojom";

// Implemented in the browser process. This interface defines observer methods
// that are called upon a manifest URL change from the renderer process.
interface ManifestUrlChangeObserver {
  // Notifies that a manifest URL is changed.
  ManifestUrlChanged(url.mojom.Url manifest_url);
};