diff options
author | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-31 22:01:30 +0000 |
---|---|---|
committer | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-31 22:01:30 +0000 |
commit | a9bd72a75a6702df07087bf77049735a45a8861e (patch) | |
tree | 5fb257027218c5ddf8e95bcfd4941b523a93d9e8 /chrome/browser/io_thread.cc | |
parent | d9ca776c4b5443df5ffa55d53735016cfa92cb11 (diff) | |
download | chromium_src-a9bd72a75a6702df07087bf77049735a45a8861e.zip chromium_src-a9bd72a75a6702df07087bf77049735a45a8861e.tar.gz chromium_src-a9bd72a75a6702df07087bf77049735a45a8861e.tar.bz2 |
First steps towards webRequest extension API.
Only an asynchronous version of onBeforeRequest is implement, with
limited data being passed.
BUG=60101
TEST=no
Review URL: http://codereview.chromium.org/6288014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73196 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/io_thread.cc')
-rw-r--r-- | chrome/browser/io_thread.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc index d5af8f0..127f53e 100644 --- a/chrome/browser/io_thread.cc +++ b/chrome/browser/io_thread.cc @@ -193,6 +193,7 @@ ConstructProxyScriptFetcherContext(IOThread::Globals* globals, globals->proxy_script_fetcher_http_transaction_factory.get()); // In-memory cookie store. context->set_cookie_store(new net::CookieMonster(NULL, NULL)); + // TODO(mpcomplete): give it a SystemNetworkDelegate. return context; } |