mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:37:35 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -22,24 +22,24 @@ public:
|
|||
void update();
|
||||
|
||||
pid_t pid() const { return m_pid; }
|
||||
const String& process_name() const { return m_process_name; }
|
||||
String const& process_name() const { return m_process_name; }
|
||||
|
||||
RemoteObjectGraphModel& object_graph_model() { return *m_object_graph_model; }
|
||||
const NonnullOwnPtrVector<RemoteObject>& roots() const { return m_roots; }
|
||||
NonnullOwnPtrVector<RemoteObject> const& roots() const { return m_roots; }
|
||||
|
||||
void set_inspected_object(FlatPtr);
|
||||
|
||||
void set_property(FlatPtr object, StringView name, const JsonValue& value);
|
||||
void set_property(FlatPtr object, StringView name, JsonValue const& value);
|
||||
|
||||
bool is_inspectable();
|
||||
|
||||
Function<void()> on_update;
|
||||
|
||||
private:
|
||||
void handle_get_all_objects_response(const JsonObject&);
|
||||
void handle_identify_response(const JsonObject&);
|
||||
void handle_get_all_objects_response(JsonObject const&);
|
||||
void handle_identify_response(JsonObject const&);
|
||||
|
||||
void send_request(const JsonObject&);
|
||||
void send_request(JsonObject const&);
|
||||
|
||||
pid_t m_pid { -1 };
|
||||
String m_process_name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue