chromium/extensions/browser/api/app_runtime/app_runtime_api.h

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

#ifndef EXTENSIONS_BROWSER_API_APP_RUNTIME_APP_RUNTIME_API_H_
#define EXTENSIONS_BROWSER_API_APP_RUNTIME_APP_RUNTIME_API_H_

#include <optional>
#include <string>
#include <vector>

#include "base/values.h"
#include "extensions/common/constants.h"

class GURL;

namespace content {
class BrowserContext;
}

namespace extensions {

namespace api::app_runtime {
struct ActionData;
struct LaunchData;
}  // namespace api::app_runtime

class Extension;
struct EntryInfo;
struct GrantedFileEntry;

class AppRuntimeEventRouter {};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_API_APP_RUNTIME_APP_RUNTIME_API_H_