| Index: cc/resources/resource_provider_unittest.cc
|
| diff --git a/cc/resources/resource_provider_unittest.cc b/cc/resources/resource_provider_unittest.cc
|
| index a1246f473a7614d0bfad72fa51f8e1fe0ac2a559..7226bfa1b4249592d54ca8fcee3c10bb6ee02837 100644
|
| --- a/cc/resources/resource_provider_unittest.cc
|
| +++ b/cc/resources/resource_provider_unittest.cc
|
| @@ -233,7 +233,7 @@ class ResourceProviderContext : public TestWebGraphicsContext3D {
|
| ASSERT_EQ(target, GL_TEXTURE_2D);
|
|
|
| // Delay moving the texture into the mailbox until the next
|
| - // insertSyncPoint, so that it is not visible to other contexts that
|
| + // InsertSyncPoint, so that it is not visible to other contexts that
|
| // haven't waited on that sync point.
|
| scoped_ptr<PendingProduceTexture> pending(new PendingProduceTexture);
|
| memcpy(pending->mailbox, mailbox, sizeof(pending->mailbox));
|
| @@ -1042,7 +1042,7 @@ TEST_P(ResourceProviderTest, TextureAllocation) {
|
| resource_provider->DeleteResource(id);
|
| Mock::VerifyAndClearExpectations(context);
|
|
|
| - // Same for setPixelsFromBuffer
|
| + // Same for SetPixelsFromBuffer
|
| EXPECT_CALL(*context, createTexture()).WillOnce(Return(texture_id));
|
| EXPECT_CALL(*context, deleteTexture(texture_id)).Times(1);
|
| EXPECT_CALL(*context, bindTexture(GL_TEXTURE_2D, texture_id)).Times(3);
|
|
|