Skip to content

Commit 8e0c41b

Browse files
ryuhei shimaryuhei shima
authored andcommitted
lint
1 parent 3a72667 commit 8e0c41b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/inspector/dom_storage_agent.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)