Skip to content

Commit 4faff7d

Browse files
committed
fix test
1 parent 67bc93b commit 4faff7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/inspector/dom_storage_agent.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ class DOMStorageAgent : public protocol::DOMStorage::Backend,
5151

5252
private:
5353
std::unique_ptr<protocol::DOMStorage::Frontend> frontend_;
54-
std::unordered_map<std::string, std::string> local_storage_map_;
55-
std::unordered_map<std::string, std::string> session_storage_map_;
56-
bool enabled_;
54+
std::unordered_map<std::string, std::string> local_storage_map_ = {};
55+
std::unordered_map<std::string, std::string> session_storage_map_ = {};
56+
bool enabled_ = false;
5757
Environment* env_;
5858
};
5959

0 commit comments

Comments
 (0)