#ifndef EXTENSIONS_COMMON_API_TEST_H__
#define EXTENSIONS_COMMON_API_TEST_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
namespace extensions {
namespace api {
namespace test {
namespace GetConfig {
namespace Results {
struct TestConfig { … };
base::Value::List Create(const TestConfig& test_config);
}
}
namespace NotifyFail {
struct Params { … };
}
namespace NotifyPass {
struct Params { … };
}
namespace Log {
struct Params { … };
}
namespace OpenFileUrl {
struct Params { … };
}
namespace PassMessage {
struct Params { … };
namespace Results {
base::Value::List Create(const std::string& response);
}
}
namespace SendScriptResult {
struct Params { … };
namespace Results {
base::Value::List Create();
}
}
namespace WaitForRoundTrip {
struct Params { … };
namespace Results {
base::Value::List Create(const std::string& message);
}
}
namespace OnMessage {
extern const char kEventName[];
struct Info { … };
base::Value::List Create(const Info& info);
}
}
}
}
#endif