| Index: webkit/plugins/ppapi/url_request_info_unittest.cc
|
| diff --git a/webkit/plugins/ppapi/url_request_info_unittest.cc b/webkit/plugins/ppapi/url_request_info_unittest.cc
|
| index dd8d0f7a490f60670d3615919e18737bc099eb36..f34d448a85b927bcb06b3b49fe171ec94d335efa 100644
|
| --- a/webkit/plugins/ppapi/url_request_info_unittest.cc
|
| +++ b/webkit/plugins/ppapi/url_request_info_unittest.cc
|
| @@ -119,16 +119,16 @@ WebView* URLRequestInfoTest::web_view_;
|
| WebFrame* URLRequestInfoTest::frame_;
|
|
|
| TEST_F(URLRequestInfoTest, GetInterface) {
|
| - const PPB_URLRequestInfo* interface =
|
| + const PPB_URLRequestInfo* request_info =
|
| ::ppapi::thunk::GetPPB_URLRequestInfo_Thunk();
|
| - EXPECT_TRUE(interface);
|
| - EXPECT_TRUE(interface->Create);
|
| - EXPECT_TRUE(interface->IsURLRequestInfo);
|
| - EXPECT_TRUE(interface->SetProperty);
|
| - EXPECT_TRUE(interface->AppendDataToBody);
|
| - EXPECT_TRUE(interface->AppendFileToBody);
|
| - EXPECT_TRUE(interface->Create);
|
| - EXPECT_TRUE(interface->Create);
|
| + EXPECT_TRUE(request_info);
|
| + EXPECT_TRUE(request_info->Create);
|
| + EXPECT_TRUE(request_info->IsURLRequestInfo);
|
| + EXPECT_TRUE(request_info->SetProperty);
|
| + EXPECT_TRUE(request_info->AppendDataToBody);
|
| + EXPECT_TRUE(request_info->AppendFileToBody);
|
| + EXPECT_TRUE(request_info->Create);
|
| + EXPECT_TRUE(request_info->Create);
|
| }
|
|
|
| TEST_F(URLRequestInfoTest, AsURLRequestInfo) {
|
|
|