Index: ppapi/proxy/host_dispatcher.cc |
diff --git a/ppapi/proxy/host_dispatcher.cc b/ppapi/proxy/host_dispatcher.cc |
index 82568abec3918cb692e60dac318f0d064fb91cd6..7124c17ae03d404ce706945c861304eae79c855c 100644 |
--- a/ppapi/proxy/host_dispatcher.cc |
+++ b/ppapi/proxy/host_dispatcher.cc |
@@ -247,7 +247,7 @@ void HostDispatcher::OnHostMsgLogWithSource(PP_Instance instance, |
int int_log_level, |
const std::string& source, |
const std::string& value) { |
- PP_LogLevel_Dev level = static_cast<PP_LogLevel_Dev>(int_log_level); |
+ PP_LogLevel level = static_cast<PP_LogLevel>(int_log_level); |
if (instance) { |
PpapiGlobals::Get()->LogWithSource(instance, level, source, value); |
} else { |