#ifndef EXTENSIONS_COMMON_API_APP_WINDOW_H__
#define EXTENSIONS_COMMON_API_APP_WINDOW_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
#include <string_view>
#include "extensions/common/api/app_runtime.h"
namespace extensions {
namespace api {
namespace app_window {
struct ContentBounds { … };
struct BoundsSpecification { … };
struct Bounds { … };
struct FrameOptions { … };
enum class State { … };
const char* ToString(State as_enum);
State ParseState(std::string_view as_string);
std::u16string GetStateParseError(std::string_view as_string);
enum class WindowType { … };
const char* ToString(WindowType as_enum);
WindowType ParseWindowType(std::string_view as_string);
std::u16string GetWindowTypeParseError(std::string_view as_string);
struct CreateWindowOptions { … };
struct AppWindow { … };
namespace Create {
struct Params { … };
namespace Results {
struct CreatedWindow { … };
base::Value::List Create(const CreatedWindow& created_window);
}
}
}
}
}
#endif