diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 05:41:17 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 05:41:17 +0000 |
commit | ee61137f403470aebd9793c8ab047a7422b21554 (patch) | |
tree | 91437a1423d4440cc5dd10e73d6615105d09d73a /net | |
parent | 975889166acfc2624ce89e89818c931472102e68 (diff) | |
download | chromium_src-ee61137f403470aebd9793c8ab047a7422b21554.zip chromium_src-ee61137f403470aebd9793c8ab047a7422b21554.tar.gz chromium_src-ee61137f403470aebd9793c8ab047a7422b21554.tar.bz2 |
base::Bind: Convert the following files.
* automation_provider_win.cc
* chrome_browser_main.cc
* web_socket_proxy_controller.cc
* cookie_policy_browsertest.cc
* profile_sync_service_autofill_unittest.cc
BUG=none
TEST=none
R=csilv@chromium.org
Review URL: http://codereview.chromium.org/8727018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111876 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/cookie_store.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/cookie_store.h b/net/base/cookie_store.h index 1276e2d..873d88b 100644 --- a/net/base/cookie_store.h +++ b/net/base/cookie_store.h @@ -69,7 +69,7 @@ class NET_EXPORT CookieStore : public base::RefCountedThreadSafe<CookieStore> { // TODO(???): what if the total size of all the cookies >4k, can we have a // header that big or do we need multiple Cookie: headers? - // Note: Some sites, such as Facebook, occationally use Cookie headers >4k. + // Note: Some sites, such as Facebook, occasionally use Cookie headers >4k. // // Simple interface, gets a cookie string "a=b; c=d" for the given URL. // Use options to access httponly cookies. @@ -78,7 +78,7 @@ class NET_EXPORT CookieStore : public base::RefCountedThreadSafe<CookieStore> { const GetCookiesCallback& callback) = 0; // This function is similar to GetCookiesWithOptions same functionality as - // GetCookiesWithOptions except that it additionaly provides detailed + // GetCookiesWithOptions except that it additionally provides detailed // information about the cookie contained in the cookie line. See |struct // CookieInfo| above for details. virtual void GetCookiesWithInfoAsync( |