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

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: Created 9 years, 4 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
« ppapi/proxy/ppapi_proxy_test.cc ('K') | « webkit/glue/webkit_glue.gypi ('k') | no next file » | 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 3e1d84ef935afdce6a9a5d9ea71704db0d67301b..58eccb793b09f0fc8e3acf163b9ab181fd340de8 100644
--- a/webkit/plugins/ppapi/url_request_info_unittest.cc
+++ b/webkit/plugins/ppapi/url_request_info_unittest.cc
@@ -102,16 +102,16 @@ WebView* URLRequestInfoTest::web_view_;
WebFrame* URLRequestInfoTest::frame_;
TEST_F(URLRequestInfoTest, GetInterface) {
- const PPB_URLRequestInfo* interface =
+ const PPB_URLRequestInfo* iface =
jeanluc1 2011/08/22 22:20:24 We're supposed to avoid abbeviation and 'iface' is
Jói 2011/08/24 13:56:33 Done.
::ppapi::thunk::GetPPB_URLRequestInfo_Thunk();
- ASSERT_TRUE(interface);
- ASSERT_TRUE(interface->Create);
- ASSERT_TRUE(interface->IsURLRequestInfo);
- ASSERT_TRUE(interface->SetProperty);
- ASSERT_TRUE(interface->AppendDataToBody);
- ASSERT_TRUE(interface->AppendFileToBody);
- ASSERT_TRUE(interface->Create);
- ASSERT_TRUE(interface->Create);
+ ASSERT_TRUE(iface);
+ ASSERT_TRUE(iface->Create);
+ ASSERT_TRUE(iface->IsURLRequestInfo);
+ ASSERT_TRUE(iface->SetProperty);
+ ASSERT_TRUE(iface->AppendDataToBody);
+ ASSERT_TRUE(iface->AppendFileToBody);
+ ASSERT_TRUE(iface->Create);
+ ASSERT_TRUE(iface->Create);
}
TEST_F(URLRequestInfoTest, AsURLRequestInfo) {
« ppapi/proxy/ppapi_proxy_test.cc ('K') | « webkit/glue/webkit_glue.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698