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

Unified Diff: net/base/host_resolver_impl_unittest.cc

Issue 10669038: base: Remove dereference structure operator (i.e ->) from ScopedVector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 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
« no previous file with comments | « net/base/host_resolver_impl.cc ('k') | net/dns/dns_transaction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/host_resolver_impl_unittest.cc
diff --git a/net/base/host_resolver_impl_unittest.cc b/net/base/host_resolver_impl_unittest.cc
index 43b2e520750690d5051dc2efd1e22ef9632fe514..91236b3c622369e69cec99a4fdae3e5c328c6a67 100644
--- a/net/base/host_resolver_impl_unittest.cc
+++ b/net/base/host_resolver_impl_unittest.cc
@@ -775,7 +775,7 @@ TEST_F(HostResolverImplTest, StartWithinCallback) {
EXPECT_EQ(OK, requests_[0]->WaitForResult());
ASSERT_EQ(5u, requests_.size());
- EXPECT_EQ(OK, requests_->back()->WaitForResult());
+ EXPECT_EQ(OK, requests_.back()->WaitForResult());
EXPECT_EQ(2u, proc_->GetCaptureList().size());
}
@@ -1269,7 +1269,7 @@ TEST_F(HostResolverImplDnsTest, DnsTask) {
// Initially there is no config, so client should not be invoked.
EXPECT_EQ(ERR_IO_PENDING, CreateRequest("ok_fail", 80)->Resolve());
- proc_->SignalMultiple(requests_->size());
+ proc_->SignalMultiple(requests_.size());
EXPECT_EQ(ERR_NAME_NOT_RESOLVED, requests_[0]->WaitForResult());
« no previous file with comments | « net/base/host_resolver_impl.cc ('k') | net/dns/dns_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698