Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2383)

Unified Diff: ash/common/devtools/ash_devtools_unittest.cc

Issue 2522583002: Roll third_party/inspector_protocol to 4ad35c45aca9834b67ec2cb152c816ea1b7ceb48 (Closed)
Patch Set: updated README.chromium Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/ui_devtools/devtools_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/devtools/ash_devtools_unittest.cc
diff --git a/ash/common/devtools/ash_devtools_unittest.cc b/ash/common/devtools/ash_devtools_unittest.cc
index c5a1b54fc3013e039cb0f96653008d25d7b3ec38..ee77c774cd84f8190ac16d688d96ccb05a5d3d7c 100644
--- a/ash/common/devtools/ash_devtools_unittest.cc
+++ b/ash/common/devtools/ash_devtools_unittest.cc
@@ -47,10 +47,12 @@ class FakeFrontendChannel : public FrontendChannel {
}
// FrontendChannel
- void sendProtocolResponse(int callId, const std::string& message) override {}
+ void sendProtocolResponse(int callId,
+ std::unique_ptr<Serializable> message) override {}
void flushProtocolNotifications() override {}
- void sendProtocolNotification(const std::string& message) override {
- protocol_notification_messages_.push_back(message);
+ void sendProtocolNotification(
+ std::unique_ptr<Serializable> message) override {
+ protocol_notification_messages_.push_back(message->serialize());
}
private:
« no previous file with comments | « no previous file | components/ui_devtools/devtools_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698