File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,12 @@ protocol::DispatchResponse DOMStorageAgent::getDOMStorageItems(
105105 std::make_unique<protocol::Array<protocol::Array<protocol::String>>>();
106106 for (const auto & pair : *storage_map) {
107107 auto item = std::make_unique<protocol::Array<protocol::String>>();
108- item->push_back (
109- protocol::StringUtil::fromUTF16 ( reinterpret_cast <const uint16_t *>(pair.first .data ()),
110- pair.first .size ()));
111- item->push_back (
112- protocol::StringUtil::fromUTF16 ( reinterpret_cast <const uint16_t *>(pair.second .data ()),
113- pair.second .size ()));
108+ item->push_back (protocol::StringUtil::fromUTF16 (
109+ reinterpret_cast <const uint16_t *>(pair.first .data ()),
110+ pair.first .size ()));
111+ item->push_back (protocol::StringUtil::fromUTF16 (
112+ reinterpret_cast <const uint16_t *>(pair.second .data ()),
113+ pair.second .size ()));
114114 result->push_back (std::move (item));
115115 }
116116 *items = std::move (result);
You can’t perform that action at this time.
0 commit comments