diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-19 19:52:12 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-19 19:52:12 +0000 |
commit | 7b2f7297010c777f5adaa4b6131828a20496447a (patch) | |
tree | 67d307b8e93dd8f2f33d2268079ef33f403e104e /content/content_tests.gypi | |
parent | 060088c510e263ed73ed3be8d6c5a55292f9ff91 (diff) | |
download | chromium_src-7b2f7297010c777f5adaa4b6131828a20496447a.zip chromium_src-7b2f7297010c777f5adaa4b6131828a20496447a.tar.gz chromium_src-7b2f7297010c777f5adaa4b6131828a20496447a.tar.bz2 |
Convert url request info to new proxy API.
This splits out the helper functions in the in-process version to a new file: url_request_info_util. This will be moved to content/renderer when we move the url_loader.
The unit test was moved from webkit/plugins/ppapi to content/renderer/ppapi. I made it a browsertest which allowed the removal of a little boilerplate.
I had to add "internal" functions for loading stuff with just the data struct rather than a resource so the proxy doesn't have to create an in-process URLRequestInfo resource (which can't be created now when running out-of-process) just to create a request. This should be a little more efficient now anyway, and these duplicates will go away when such code moves to the new proxy design.
BUG=
Review URL: https://codereview.chromium.org/10913257
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_tests.gypi')
-rw-r--r-- | content/content_tests.gypi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/content/content_tests.gypi b/content/content_tests.gypi index ba152cd..8ef434f 100644 --- a/content/content_tests.gypi +++ b/content/content_tests.gypi @@ -239,6 +239,7 @@ '../testing/gmock.gyp:gmock', '../testing/gtest.gyp:gtest', '../ui/ui.gyp:ui', + '../webkit/support/webkit_support.gyp:glue', '../webkit/support/webkit_support.gyp:user_agent', ], 'include_dirs': [ @@ -669,6 +670,7 @@ 'renderer/mouse_lock_dispatcher_browsertest.cc', 'renderer/pepper/mock_renderer_ppapi_host.cc', 'renderer/pepper/pepper_file_chooser_host_unittest.cc', + 'renderer/pepper/pepper_url_request_unittest.cc', 'renderer/render_view_browsertest.cc', 'renderer/render_view_browsertest_mac.mm', 'renderer/renderer_accessibility_browsertest.cc', |