Chromium Code Reviews

Side by Side Diff: content/renderer/pepper/pepper_url_request_unittest.cc

Issue 186883002: Move user_agent code from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: link chrome Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
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"
6 #include "content/public/test/render_view_test.h" 7 #include "content/public/test/render_view_test.h"
7 #include "content/renderer/pepper/url_request_info_util.h" 8 #include "content/renderer/pepper/url_request_info_util.h"
8 #include "ppapi/proxy/connection.h" 9 #include "ppapi/proxy/connection.h"
9 #include "ppapi/proxy/url_request_info_resource.h" 10 #include "ppapi/proxy/url_request_info_resource.h"
10 #include "ppapi/shared_impl/proxy_lock.h" 11 #include "ppapi/shared_impl/proxy_lock.h"
11 #include "ppapi/shared_impl/test_globals.h" 12 #include "ppapi/shared_impl/test_globals.h"
12 #include "ppapi/shared_impl/url_request_info_data.h" 13 #include "ppapi/shared_impl/url_request_info_data.h"
13 #include "ppapi/thunk/thunk.h" 14 #include "ppapi/thunk/thunk.h"
14 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
15 #include "third_party/WebKit/public/platform/WebURLRequest.h" 16 #include "third_party/WebKit/public/platform/WebURLRequest.h"
16 #include "third_party/WebKit/public/web/WebFrame.h" 17 #include "third_party/WebKit/public/web/WebFrame.h"
17 #include "third_party/WebKit/public/web/WebFrameClient.h" 18 #include "third_party/WebKit/public/web/WebFrameClient.h"
18 #include "third_party/WebKit/public/web/WebView.h" 19 #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 20
22 // This test is a end-to-end test from the resource to the WebKit request 21 // 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 22 // 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 23 // test it by making sure the conversion routines actually work at the same
25 // time. 24 // time.
26 25
27 using blink::WebCString; 26 using blink::WebCString;
28 using blink::WebFrame; 27 using blink::WebFrame;
29 using blink::WebFrameClient; 28 using blink::WebFrameClient;
30 using blink::WebString; 29 using blink::WebString;
(...skipping 217 matching lines...)
248 PP_URLREQUESTPROPERTY_HEADERS, "foo: bar\nbar: baz")); 247 PP_URLREQUESTPROPERTY_HEADERS, "foo: bar\nbar: baz"));
249 EXPECT_TRUE(IsExpected( 248 EXPECT_TRUE(IsExpected(
250 GetHeaderValue("foo"), "bar")); 249 GetHeaderValue("foo"), "bar"));
251 EXPECT_TRUE(IsExpected( 250 EXPECT_TRUE(IsExpected(
252 GetHeaderValue("bar"), "baz")); 251 GetHeaderValue("bar"), "baz"));
253 } 252 }
254 253
255 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody. 254 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody.
256 255
257 } // namespace content 256 } // namespace content
OLDNEW

Powered by Google App Engine