chromium/extensions/common/api/sockets/sockets_manifest_data.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_COMMON_API_SOCKETS_SOCKETS_MANIFEST_DATA_H_
#define EXTENSIONS_COMMON_API_SOCKETS_SOCKETS_MANIFEST_DATA_H_

#include <string>
#include <vector>

#include "extensions/common/extension.h"
#include "extensions/common/manifest_handler.h"

namespace content {
struct SocketPermissionRequest;
}

namespace extensions {
class SocketsManifestPermission;
}

namespace extensions {

// The parsed form of the "sockets" manifest entry.
class SocketsManifestData : public Extension::ManifestData {};

}  // namespace extensions

#endif  // EXTENSIONS_COMMON_API_SOCKETS_SOCKETS_MANIFEST_DATA_H_