diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-06 04:19:30 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-06 04:19:30 +0000 |
commit | 27a112c2e8c464ddd4aed5e1f425204bb3f96d54 (patch) | |
tree | a02d4a66a90a040a04aa64cb94948c8e7df59658 /chrome_frame/external_tab.h | |
parent | e79cf09fd1bd403396a65a3c02642b075ec3d1d9 (diff) | |
download | chromium_src-27a112c2e8c464ddd4aed5e1f425204bb3f96d54.zip chromium_src-27a112c2e8c464ddd4aed5e1f425204bb3f96d54.tar.gz chromium_src-27a112c2e8c464ddd4aed5e1f425204bb3f96d54.tar.bz2 |
net: Add namespace net to the remaining files under url_request directory.
It just adds the 'namespace net' to these files and a typedef for them, because there are many
entries to fix in one pass. They will be fixed later.
BUG=64263
TEST=trybots
Review URL: http://codereview.chromium.org/6056007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70592 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/external_tab.h')
-rw-r--r-- | chrome_frame/external_tab.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome_frame/external_tab.h b/chrome_frame/external_tab.h index 4fbb5d3..ac7aff3 100644 --- a/chrome_frame/external_tab.h +++ b/chrome_frame/external_tab.h @@ -22,14 +22,15 @@ class Task; class CancelableTask; + namespace base { - class TimeDelta; - class WaitableEvent; +class TimeDelta; +class WaitableEvent; } namespace IPC { - struct NavigationInfo; - struct MiniContextMenuParams; +struct NavigationInfo; +struct MiniContextMenuParams; } // This is the delegate/callback interface that has to be implemented @@ -150,7 +151,7 @@ class ExternalTabProxy : public CWindowImpl<ExternalTabProxy>, virtual void OnNetwork_Start( int request_id, const AutomationURLRequest& request_info); virtual void OnNetwork_Read(int request_id, int bytes_to_read); - virtual void OnNetwork_End(int request_id, const URLRequestStatus& s); + virtual void OnNetwork_End(int request_id, const net::URLRequestStatus& s); virtual void OnNetwork_DownloadInHost(int request_id); virtual void OnGetCookies(const GURL& url, int cookie_id); virtual void OnSetCookie(const GURL& url, const std::string& cookie); |