summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/ppapi/url_request_info_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/plugins/ppapi/url_request_info_unittest.cc')
-rw-r--r--webkit/plugins/ppapi/url_request_info_unittest.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/webkit/plugins/ppapi/url_request_info_unittest.cc b/webkit/plugins/ppapi/url_request_info_unittest.cc
index dd8d0f7..f34d448 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) {