chromium/chrome/browser/notifications/scheduler/public/display_agent.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/notifications/scheduler/public/display_agent.h"

#include "base/notreached.h"

namespace notifications {

// Default implementation of DisplayAgent.
class DisplayAgentDefault : public DisplayAgent {};

// static
std::unique_ptr<DisplayAgent> DisplayAgent::Create() {}

}  // namespace notifications