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

Side by Side Diff: webkit/plugins/ppapi/url_request_info_unittest.cc

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/ppp_pdf.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ppapi/thunk/thunk.h" 5 #include "ppapi/thunk/thunk.h"
6 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 6 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
7 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" 7 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h"
8 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques t.h" 8 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques t.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
10 #include "webkit/glue/user_agent.h" 10 #include "webkit/glue/user_agent.h"
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 static WebView* web_view_; 116 static WebView* web_view_;
117 static WebFrame* frame_; 117 static WebFrame* frame_;
118 }; 118 };
119 119
120 TestWebFrameClient URLRequestInfoTest::web_frame_client_; 120 TestWebFrameClient URLRequestInfoTest::web_frame_client_;
121 WebView* URLRequestInfoTest::web_view_; 121 WebView* URLRequestInfoTest::web_view_;
122 WebFrame* URLRequestInfoTest::frame_; 122 WebFrame* URLRequestInfoTest::frame_;
123 123
124 TEST_F(URLRequestInfoTest, GetInterface) { 124 TEST_F(URLRequestInfoTest, GetInterface) {
125 const PPB_URLRequestInfo* request_info = 125 const PPB_URLRequestInfo* request_info =
126 ::ppapi::thunk::GetPPB_URLRequestInfo_Thunk(); 126 ::ppapi::thunk::GetPPB_URLRequestInfo_1_0_Thunk();
127 EXPECT_TRUE(request_info); 127 EXPECT_TRUE(request_info);
128 EXPECT_TRUE(request_info->Create); 128 EXPECT_TRUE(request_info->Create);
129 EXPECT_TRUE(request_info->IsURLRequestInfo); 129 EXPECT_TRUE(request_info->IsURLRequestInfo);
130 EXPECT_TRUE(request_info->SetProperty); 130 EXPECT_TRUE(request_info->SetProperty);
131 EXPECT_TRUE(request_info->AppendDataToBody); 131 EXPECT_TRUE(request_info->AppendDataToBody);
132 EXPECT_TRUE(request_info->AppendFileToBody); 132 EXPECT_TRUE(request_info->AppendFileToBody);
133 } 133 }
134 134
135 TEST_F(URLRequestInfoTest, AsURLRequestInfo) { 135 TEST_F(URLRequestInfoTest, AsURLRequestInfo) {
136 EXPECT_EQ(info_, info_->AsPPB_URLRequestInfo_API()); 136 EXPECT_EQ(info_, info_->AsPPB_URLRequestInfo_API());
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 EXPECT_TRUE(IsExpected( 250 EXPECT_TRUE(IsExpected(
251 GetHeaderValue("foo"), "bar")); 251 GetHeaderValue("foo"), "bar"));
252 EXPECT_TRUE(IsExpected( 252 EXPECT_TRUE(IsExpected(
253 GetHeaderValue("bar"), "baz")); 253 GetHeaderValue("bar"), "baz"));
254 } 254 }
255 255
256 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody. 256 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody.
257 257
258 } // namespace ppapi 258 } // namespace ppapi
259 } // namespace webkit 259 } // namespace webkit
260
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppp_pdf.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698