Index: ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h |
diff --git a/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h b/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h |
index 69c171601c0bfa7491e72be72913d60c2a2eb4dc..fec63be10177eb72932e8664a4d52389fa15cefd 100644 |
--- a/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h |
+++ b/ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h |
@@ -13,7 +13,7 @@ namespace plugin { |
class SelLdrLauncherChrome : public nacl::SelLdrLauncherBase { |
public: |
virtual bool Start(const char* url); |
- virtual bool Start(PP_Instance instance, |
+ virtual void Start(PP_Instance instance, |
const char* url, |
bool uses_irt, |
bool uses_ppapi, |
@@ -21,7 +21,8 @@ class SelLdrLauncherChrome : public nacl::SelLdrLauncherBase { |
bool enable_dyncode_syscalls, |
bool enable_exception_handling, |
bool enable_crash_throttling, |
- nacl::string* error_message); |
+ PP_Var* error_message, |
+ PP_CompletionCallback callback); |
}; |
} // namespace plugin |