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

Unified Diff: mojo/public/cpp/bindings/tests/validation_unittest.cc

Issue 299833008: Move AcceptWithResponder() out of the MessageReceiver interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 months 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
Index: mojo/public/cpp/bindings/tests/validation_unittest.cc
diff --git a/mojo/public/cpp/bindings/tests/validation_unittest.cc b/mojo/public/cpp/bindings/tests/validation_unittest.cc
index e3504db1448b54cd6df6f67efdc7bd8ce7d37990..4384042137fcc999f91af0888ef7f2eace4f6d6e 100644
--- a/mojo/public/cpp/bindings/tests/validation_unittest.cc
+++ b/mojo/public/cpp/bindings/tests/validation_unittest.cc
@@ -96,11 +96,6 @@ class DummyMessageReceiver : public MessageReceiver {
virtual bool Accept(Message* message) MOJO_OVERRIDE {
return true; // Any message is OK.
}
- virtual bool AcceptWithResponder(Message* message,
- MessageReceiver* responder) MOJO_OVERRIDE {
- assert(false);
- return false;
- }
};
std::string DumpMessageHeader(Message* message) {

Powered by Google App Engine
This is Rietveld 408576698