#ifndef CONTENT_BROWSER_MEDIA_CAPTURE_WEB_CONTENTS_CAPTURE_UTIL_H_
#define CONTENT_BROWSER_MEDIA_CAPTURE_WEB_CONTENTS_CAPTURE_UTIL_H_
#include <string>
#include "content/common/content_export.h"
namespace content {
class CONTENT_EXPORT WebContentsCaptureUtil {
public:
static std::string AppendWebContentsDeviceScheme(
const std::string& device_id_param);
static std::string StripWebContentsDeviceScheme(
const std::string& device_id_param);
static bool IsWebContentsDeviceId(const std::string& device_id);
static bool ExtractTabCaptureTarget(const std::string& device_id,
int* render_process_id,
int* render_view_id);
};
}
#endif