#ifndef CHROME_COMMON_EXTENSIONS_API_PDF_VIEWER_PRIVATE_H__
#define CHROME_COMMON_EXTENSIONS_API_PDF_VIEWER_PRIVATE_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
namespace extensions {
namespace api {
namespace pdf_viewer_private {
struct StreamInfo { … };
struct PdfPluginAttributes { … };
namespace GetStreamInfo {
namespace Results {
base::Value::List Create(const StreamInfo& stream_info);
}
}
namespace IsAllowedLocalFileAccess {
struct Params { … };
namespace Results {
base::Value::List Create(bool result);
}
}
namespace SetPdfDocumentTitle {
struct Params { … };
namespace Results {
base::Value::List Create();
}
}
namespace SetPdfPluginAttributes {
struct Params { … };
namespace Results {
base::Value::List Create();
}
}
namespace OnSave {
extern const char kEventName[];
base::Value::List Create(const std::string& stream_url);
}
}
}
}
#endif