Index: src/inspector/remote-object-id.h |
diff --git a/src/inspector/remote-object-id.h b/src/inspector/remote-object-id.h |
index a32f568fb8ac0eb8768e00d98efc091d548c0144..af54873e99f969ea6b59f718354fd1143d146dca 100644 |
--- a/src/inspector/remote-object-id.h |
+++ b/src/inspector/remote-object-id.h |
@@ -9,7 +9,7 @@ |
namespace v8_inspector { |
-using protocol::ErrorString; |
+using protocol::Response; |
class RemoteObjectIdBase { |
public: |
@@ -27,7 +27,7 @@ class RemoteObjectIdBase { |
class RemoteObjectId final : public RemoteObjectIdBase { |
public: |
- static std::unique_ptr<RemoteObjectId> parse(ErrorString*, const String16&); |
+ static Response parse(const String16&, std::unique_ptr<RemoteObjectId>&); |
dgozman
2016/11/02 19:54:00
& -> *
kozy
2016/11/02 22:45:13
Done.
|
~RemoteObjectId() {} |
int id() const { return m_id; } |
@@ -39,8 +39,7 @@ class RemoteObjectId final : public RemoteObjectIdBase { |
class RemoteCallFrameId final : public RemoteObjectIdBase { |
public: |
- static std::unique_ptr<RemoteCallFrameId> parse(ErrorString*, |
- const String16&); |
+ static Response parse(const String16&, std::unique_ptr<RemoteCallFrameId>&); |
dgozman
2016/11/02 19:54:00
ditto
kozy
2016/11/02 22:45:13
Done.
|
~RemoteCallFrameId() {} |
int frameOrdinal() const { return m_frameOrdinal; } |