#ifndef CONTENT_COMMON_CONTENT_SWITCHES_INTERNAL_H_
#define CONTENT_COMMON_CONTENT_SWITCHES_INTERNAL_H_
#include "build/build_config.h"
#include "content/common/content_export.h"
#include "third_party/blink/public/common/web_preferences/web_preferences.h"
namespace base {
class CommandLine;
}
namespace content {
bool IsPinchToZoomEnabled();
blink::mojom::V8CacheOptions GetV8CacheOptions();
void WaitForDebugger(const std::string& label);
CONTENT_EXPORT std::vector<std::string> FeaturesFromSwitch(
const base::CommandLine& command_line,
const char* switch_name);
}
#endif