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

Unified Diff: base/bind_unittest.cc

Issue 1124763003: Update from https://crrev.com/327068 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: update nacl, buildtools, fix display_change_notifier_unittest Created 5 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: base/bind_unittest.cc
diff --git a/base/bind_unittest.cc b/base/bind_unittest.cc
index a30b7756704658a599a84e3df88e80166e731ce7..f885403c92dfa68b0ba0a4afe534e4c3d39ad918 100644
--- a/base/bind_unittest.cc
+++ b/base/bind_unittest.cc
@@ -778,10 +778,10 @@ TEST_F(BindTest, ArgumentCopies) {
copies = 0;
assigns = 0;
- DerivedCopyCounter dervied(&copies, &assigns);
+ DerivedCopyCounter derived(&copies, &assigns);
Callback<void(CopyCounter)> coerce_cb =
Bind(&VoidPolymorphic1<CopyCounter>);
- coerce_cb.Run(CopyCounter(dervied));
+ coerce_cb.Run(CopyCounter(derived));
EXPECT_GE(2, copies);
EXPECT_EQ(0, assigns);
}

Powered by Google App Engine
This is Rietveld 408576698