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

Unified Diff: third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_stub_declaration.tmpl

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 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
Index: third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_stub_declaration.tmpl
diff --git a/third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_stub_declaration.tmpl b/third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_stub_declaration.tmpl
deleted file mode 100644
index c6afa75df7f6f9c7716f2e0bce108b46a703031c..0000000000000000000000000000000000000000
--- a/third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_stub_declaration.tmpl
+++ /dev/null
@@ -1,15 +0,0 @@
-class {{interface.name}}Stub : public mojo::MessageReceiverWithResponderStatus {
- public:
- {{interface.name}}Stub();
- ~{{interface.name}}Stub() override;
- void set_sink({{interface.name}}* sink) { sink_ = sink; }
- {{interface.name}}* sink() { return sink_; }
-
- bool Accept(mojo::Message* message) override;
- bool AcceptWithResponder(mojo::Message* message,
- mojo::MessageReceiverWithStatus* responder) override;
-
- private:
- {{interface.name}}* sink_;
- mojo::internal::ControlMessageHandler control_message_handler_;
-};

Powered by Google App Engine
This is Rietveld 408576698