Index: chrome/browser/tab_contents/render_view_context_menu.h |
=================================================================== |
--- chrome/browser/tab_contents/render_view_context_menu.h (revision 107061) |
+++ chrome/browser/tab_contents/render_view_context_menu.h (working copy) |
@@ -54,7 +54,7 @@ |
// } |
// virtual ~MyTask() { |
// } |
-// virtual void OnURLFetchComplete(const URLFetcher* source, |
+// virtual void OnURLFetchComplete(const content::URLFetcher* source, |
// const GURL& url, |
// const net::URLRequestStatus& status, |
// int response, |
@@ -66,7 +66,7 @@ |
// } |
// void Start(const GURL* url, net::URLRequestContextGetter* context) { |
// fetcher_.reset(new URLFetcher(url, URLFetcher::GET, this)); |
-// fetcher_->set_request_context(context); |
+// fetcher_->SetRequestContext(context); |
// fetcher_->Start(); |
// } |
// |