| Index: ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.h b/ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| index 8186e5b54e5c4720d7b2da08b85254530f96396d..3094cdb310b872be72753971a021f805c3c400c5 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h
|
| @@ -73,14 +73,6 @@ struct SelLdrStartParams {
|
| };
|
|
|
| // Callback resources are essentially our continuation state.
|
| -
|
| -struct LogToJavaScriptConsoleResource {
|
| - public:
|
| - explicit LogToJavaScriptConsoleResource(std::string msg)
|
| - : message(msg) {}
|
| - std::string message;
|
| -};
|
| -
|
| struct PostMessageResource {
|
| public:
|
| explicit PostMessageResource(std::string msg)
|
| @@ -157,8 +149,6 @@ class PluginReverseInterface: public nacl::ReverseInterface {
|
|
|
| void ShutDown();
|
|
|
| - virtual void Log(nacl::string message);
|
| -
|
| virtual void DoPostMessage(nacl::string message);
|
|
|
| virtual void StartupInitializationComplete();
|
| @@ -183,9 +173,6 @@ class PluginReverseInterface: public nacl::ReverseInterface {
|
| void AddTempQuotaManagedFile(const nacl::string& file_id);
|
|
|
| protected:
|
| - virtual void Log_MainThreadContinuation(LogToJavaScriptConsoleResource* p,
|
| - int32_t err);
|
| -
|
| virtual void PostMessage_MainThreadContinuation(PostMessageResource* p,
|
| int32_t err);
|
|
|
|
|