Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: webkit/plugins/ppapi/host_globals.cc

Issue 11416214: PPAPI: Move PPB_Console out of dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/ppapi/host_globals.h ('k') | webkit/plugins/ppapi/plugin_module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/host_globals.cc
diff --git a/webkit/plugins/ppapi/host_globals.cc b/webkit/plugins/ppapi/host_globals.cc
index 7ab611da67ec6bfef246aa27cc4a66cb8984d81e..c5bcdae2e1c0f1d3d634c75fa14d6e700e6b9d01 100644
--- a/webkit/plugins/ppapi/host_globals.cc
+++ b/webkit/plugins/ppapi/host_globals.cc
@@ -45,7 +45,7 @@ void GetAllContainersForModule(PluginModule* module,
containers->insert((*i)->container());
}
-WebConsoleMessage::Level LogLevelToWebLogLevel(PP_LogLevel_Dev level) {
+WebConsoleMessage::Level LogLevelToWebLogLevel(PP_LogLevel level) {
switch (level) {
case PP_LOGLEVEL_TIP:
return WebConsoleMessage::LevelTip;
@@ -59,7 +59,7 @@ WebConsoleMessage::Level LogLevelToWebLogLevel(PP_LogLevel_Dev level) {
}
}
-WebConsoleMessage MakeLogMessage(PP_LogLevel_Dev level,
+WebConsoleMessage MakeLogMessage(PP_LogLevel level,
const std::string& source,
const std::string& message) {
std::string result = source;
@@ -141,7 +141,7 @@ base::Lock* HostGlobals::GetProxyLock() {
}
void HostGlobals::LogWithSource(PP_Instance instance,
- PP_LogLevel_Dev level,
+ PP_LogLevel level,
const std::string& source,
const std::string& value) {
PluginInstance* instance_object = HostGlobals::Get()->GetInstance(instance);
@@ -154,7 +154,7 @@ void HostGlobals::LogWithSource(PP_Instance instance,
}
void HostGlobals::BroadcastLogWithSource(PP_Module pp_module,
- PP_LogLevel_Dev level,
+ PP_LogLevel level,
const std::string& source,
const std::string& value) {
// Get the unique containers associated with the broadcast. This prevents us
« no previous file with comments | « webkit/plugins/ppapi/host_globals.h ('k') | webkit/plugins/ppapi/plugin_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698