diff options
Diffstat (limited to 'ppapi/shared_impl')
-rw-r--r-- | ppapi/shared_impl/ppapi_globals.h | 6 | ||||
-rw-r--r-- | ppapi/shared_impl/ppb_instance_shared.cc | 4 | ||||
-rw-r--r-- | ppapi/shared_impl/ppb_instance_shared.h | 4 | ||||
-rw-r--r-- | ppapi/shared_impl/resource.cc | 2 | ||||
-rw-r--r-- | ppapi/shared_impl/resource.h | 4 | ||||
-rw-r--r-- | ppapi/shared_impl/test_globals.cc | 4 | ||||
-rw-r--r-- | ppapi/shared_impl/test_globals.h | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/ppapi/shared_impl/ppapi_globals.h b/ppapi/shared_impl/ppapi_globals.h index b03d35c..0573c98 100644 --- a/ppapi/shared_impl/ppapi_globals.h +++ b/ppapi/shared_impl/ppapi_globals.h @@ -10,9 +10,9 @@ #include "base/basictypes.h" #include "base/memory/ref_counted.h" #include "base/threading/thread_local.h" // For testing purposes only. -#include "ppapi/c/dev/ppb_console_dev.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_module.h" +#include "ppapi/c/ppb_console.h" #include "ppapi/shared_impl/api_id.h" #include "ppapi/shared_impl/ppapi_shared_export.h" @@ -79,7 +79,7 @@ class PPAPI_SHARED_EXPORT PpapiGlobals { // Logs the given string to the JS console. If "source" is empty, the name of // the current module will be used, if it can be determined. virtual void LogWithSource(PP_Instance instance, - PP_LogLevel_Dev level, + PP_LogLevel level, const std::string& source, const std::string& value) = 0; @@ -92,7 +92,7 @@ class PPAPI_SHARED_EXPORT PpapiGlobals { // Note that in the plugin process, the module parameter is ignored since // there is only one possible one. virtual void BroadcastLogWithSource(PP_Module module, - PP_LogLevel_Dev level, + PP_LogLevel level, const std::string& source, const std::string& value) = 0; diff --git a/ppapi/shared_impl/ppb_instance_shared.cc b/ppapi/shared_impl/ppb_instance_shared.cc index dd46bec3a..8101de6 100644 --- a/ppapi/shared_impl/ppb_instance_shared.cc +++ b/ppapi/shared_impl/ppb_instance_shared.cc @@ -23,13 +23,13 @@ PPB_Instance_Shared::~PPB_Instance_Shared() { } void PPB_Instance_Shared::Log(PP_Instance instance, - PP_LogLevel_Dev level, + PP_LogLevel level, PP_Var value) { LogWithSource(instance, level, PP_MakeUndefined(), value); } void PPB_Instance_Shared::LogWithSource(PP_Instance instance, - PP_LogLevel_Dev level, + PP_LogLevel level, PP_Var source, PP_Var value) { // The source defaults to empty if it's not a string. The PpapiGlobals diff --git a/ppapi/shared_impl/ppb_instance_shared.h b/ppapi/shared_impl/ppb_instance_shared.h index a1845d3..61ca56d 100644 --- a/ppapi/shared_impl/ppb_instance_shared.h +++ b/ppapi/shared_impl/ppb_instance_shared.h @@ -19,10 +19,10 @@ class PPAPI_SHARED_EXPORT PPB_Instance_Shared // Implementation of some shared PPB_Instance_FunctionAPI functions. virtual void Log(PP_Instance instance, - PP_LogLevel_Dev log_level, + PP_LogLevel log_level, PP_Var value) OVERRIDE; virtual void LogWithSource(PP_Instance instance, - PP_LogLevel_Dev log_level, + PP_LogLevel log_level, PP_Var source, PP_Var value) OVERRIDE; diff --git a/ppapi/shared_impl/resource.cc b/ppapi/shared_impl/resource.cc index 88f908b..8b1f6f2 100644 --- a/ppapi/shared_impl/resource.cc +++ b/ppapi/shared_impl/resource.cc @@ -70,7 +70,7 @@ void Resource::OnReplyReceived(const proxy::ResourceMessageReplyParams& params, NOTREACHED(); } -void Resource::Log(PP_LogLevel_Dev level, const std::string& message) { +void Resource::Log(PP_LogLevel level, const std::string& message) { PpapiGlobals::Get()->LogWithSource(pp_instance(), level, std::string(), message); } diff --git a/ppapi/shared_impl/resource.h b/ppapi/shared_impl/resource.h index 46cb14c..286ebba 100644 --- a/ppapi/shared_impl/resource.h +++ b/ppapi/shared_impl/resource.h @@ -13,7 +13,7 @@ #include "base/memory/ref_counted.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_resource.h" -#include "ppapi/c/dev/ppb_console_dev.h" +#include "ppapi/c/ppb_console.h" #include "ppapi/shared_impl/host_resource.h" // All resource types should be added here. This implements our hand-rolled @@ -203,7 +203,7 @@ class PPAPI_SHARED_EXPORT Resource : public base::RefCounted<Resource> { protected: // Logs a message to the console from this resource. - void Log(PP_LogLevel_Dev level, const std::string& message); + void Log(PP_LogLevel level, const std::string& message); // Notifications for subclasses. virtual void LastPluginRefWasDeleted() {} diff --git a/ppapi/shared_impl/test_globals.cc b/ppapi/shared_impl/test_globals.cc index b1dc0fe..cf19286 100644 --- a/ppapi/shared_impl/test_globals.cc +++ b/ppapi/shared_impl/test_globals.cc @@ -58,13 +58,13 @@ base::Lock* TestGlobals::GetProxyLock() { } void TestGlobals::LogWithSource(PP_Instance instance, - PP_LogLevel_Dev level, + PP_LogLevel level, const std::string& source, const std::string& value) { } void TestGlobals::BroadcastLogWithSource(PP_Module module, - PP_LogLevel_Dev level, + PP_LogLevel level, const std::string& source, const std::string& value) { } diff --git a/ppapi/shared_impl/test_globals.h b/ppapi/shared_impl/test_globals.h index ca67e77..ea23ec7 100644 --- a/ppapi/shared_impl/test_globals.h +++ b/ppapi/shared_impl/test_globals.h @@ -46,11 +46,11 @@ class TestGlobals : public PpapiGlobals { virtual void PreCacheFontForFlash(const void* logfontw) OVERRIDE; virtual base::Lock* GetProxyLock() OVERRIDE; virtual void LogWithSource(PP_Instance instance, - PP_LogLevel_Dev level, + PP_LogLevel level, const std::string& source, const std::string& value) OVERRIDE; virtual void BroadcastLogWithSource(PP_Module module, - PP_LogLevel_Dev level, + PP_LogLevel level, const std::string& source, const std::string& value) OVERRIDE; virtual MessageLoopShared* GetCurrentMessageLoop() OVERRIDE; |