OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "content/public/common/user_agent.h" |
| 7 #include "content/public/common/user_agent_util.h" |
6 #include "content/public/test/render_view_test.h" | 8 #include "content/public/test/render_view_test.h" |
7 #include "content/renderer/pepper/url_request_info_util.h" | 9 #include "content/renderer/pepper/url_request_info_util.h" |
8 #include "ppapi/proxy/connection.h" | 10 #include "ppapi/proxy/connection.h" |
9 #include "ppapi/proxy/url_request_info_resource.h" | 11 #include "ppapi/proxy/url_request_info_resource.h" |
10 #include "ppapi/shared_impl/proxy_lock.h" | 12 #include "ppapi/shared_impl/proxy_lock.h" |
11 #include "ppapi/shared_impl/test_globals.h" | 13 #include "ppapi/shared_impl/test_globals.h" |
12 #include "ppapi/shared_impl/url_request_info_data.h" | 14 #include "ppapi/shared_impl/url_request_info_data.h" |
13 #include "ppapi/thunk/thunk.h" | 15 #include "ppapi/thunk/thunk.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 17 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
16 #include "third_party/WebKit/public/web/WebFrame.h" | 18 #include "third_party/WebKit/public/web/WebFrame.h" |
17 #include "third_party/WebKit/public/web/WebFrameClient.h" | 19 #include "third_party/WebKit/public/web/WebFrameClient.h" |
18 #include "third_party/WebKit/public/web/WebView.h" | 20 #include "third_party/WebKit/public/web/WebView.h" |
19 #include "webkit/common/user_agent/user_agent.h" | |
20 #include "webkit/common/user_agent/user_agent_util.h" | |
21 | 21 |
22 // This test is a end-to-end test from the resource to the WebKit request | 22 // This test is a end-to-end test from the resource to the WebKit request |
23 // object. The actual resource implementation is so simple, it makes sense to | 23 // object. The actual resource implementation is so simple, it makes sense to |
24 // test it by making sure the conversion routines actually work at the same | 24 // test it by making sure the conversion routines actually work at the same |
25 // time. | 25 // time. |
26 | 26 |
27 using blink::WebCString; | 27 using blink::WebCString; |
28 using blink::WebFrame; | 28 using blink::WebFrame; |
29 using blink::WebFrameClient; | 29 using blink::WebFrameClient; |
30 using blink::WebString; | 30 using blink::WebString; |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 PP_URLREQUESTPROPERTY_HEADERS, "foo: bar\nbar: baz")); | 248 PP_URLREQUESTPROPERTY_HEADERS, "foo: bar\nbar: baz")); |
249 EXPECT_TRUE(IsExpected( | 249 EXPECT_TRUE(IsExpected( |
250 GetHeaderValue("foo"), "bar")); | 250 GetHeaderValue("foo"), "bar")); |
251 EXPECT_TRUE(IsExpected( | 251 EXPECT_TRUE(IsExpected( |
252 GetHeaderValue("bar"), "baz")); | 252 GetHeaderValue("bar"), "baz")); |
253 } | 253 } |
254 | 254 |
255 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody. | 255 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody. |
256 | 256 |
257 } // namespace content | 257 } // namespace content |
OLD | NEW |