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

Unified Diff: mojo/public/cpp/bindings/tests/rect_chromium_traits.h

Issue 1966933002: Mojo C++ bindings: switch the existing usage of StructTraits to use the new data view interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@26_reader
Patch Set: typeid() is not allowed :/ Created 4 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/rect_chromium_traits.h
diff --git a/mojo/public/cpp/bindings/tests/rect_chromium_traits.h b/mojo/public/cpp/bindings/tests/rect_chromium_traits.h
index 252de72d5172e77dc4afe03f2c2072f18eef591e..ab653711ccfa637c75b88f983b338c75bf47f78f 100644
--- a/mojo/public/cpp/bindings/tests/rect_chromium_traits.h
+++ b/mojo/public/cpp/bindings/tests/rect_chromium_traits.h
@@ -18,7 +18,7 @@ struct StructTraits<test::TypemappedRect, test::RectChromium> {
static int width(const test::RectChromium& r) { return r.width(); }
static int height(const test::RectChromium& r) { return r.height(); }
- static bool Read(test::TypemappedRect::Reader r, test::RectChromium* out) {
+ static bool Read(test::TypemappedRectDataView r, test::RectChromium* out) {
if (r.width() < 0 || r.height() < 0)
return false;
out->set_x(r.x());

Powered by Google App Engine
This is Rietveld 408576698