#include "extensions/renderer/string_source_map.h"
#include "base/containers/contains.h"
#include "gin/converter.h"
#include "third_party/zlib/google/compression_utils.h"
namespace extensions {
StringSourceMap::StringSourceMap() = default;
StringSourceMap::~StringSourceMap() = default;
v8::Local<v8::String> StringSourceMap::GetSource(
v8::Isolate* isolate,
const std::string& name) const { … }
bool StringSourceMap::Contains(const std::string& name) const { … }
void StringSourceMap::RegisterModule(const std::string& name,
const std::string& source,
bool gzipped) { … }
}