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

Unified Diff: webkit/plugins/ppapi/url_request_info_unittest.cc

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: Merge to lkgr. Created 9 years, 3 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 | « webkit/plugins/ppapi/ppapi_plugin_instance.cc ('k') | webkit/support/webkit_support.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_instance.cc ('k') | webkit/support/webkit_support.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698