diff options
Diffstat (limited to 'Userland/DevTools/Inspector/RemoteProcess.h')
-rw-r--r-- | Userland/DevTools/Inspector/RemoteProcess.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/DevTools/Inspector/RemoteProcess.h b/Userland/DevTools/Inspector/RemoteProcess.h index 427b7183b5..a655993552 100644 --- a/Userland/DevTools/Inspector/RemoteProcess.h +++ b/Userland/DevTools/Inspector/RemoteProcess.h @@ -54,10 +54,10 @@ public: Function<void()> on_update; private: - void handle_get_all_objects_response(const AK::JsonObject&); - void handle_identify_response(const AK::JsonObject&); + void handle_get_all_objects_response(const JsonObject&); + void handle_identify_response(const JsonObject&); - void send_request(const AK::JsonObject&); + void send_request(const JsonObject&); pid_t m_pid { -1 }; String m_process_name; |