#ifndef EXTENSIONS_COMMON_API_EXTENSION_OPTIONS_INTERNAL_H__
#define EXTENSIONS_COMMON_API_EXTENSION_OPTIONS_INTERNAL_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
namespace extensions {
namespace api {
namespace extension_options_internal {
struct SizeChangedOptions { … };
struct PreferredSizeChangedOptions { … };
namespace OnClose {
extern const char kEventName[];
base::Value::List Create();
}
namespace OnLoad {
extern const char kEventName[];
base::Value::List Create();
}
namespace OnPreferredSizeChanged {
extern const char kEventName[];
base::Value::List Create(const PreferredSizeChangedOptions& options);
}
}
}
}
#endif