| Index: content/browser/renderer_host/resource_handler.h
|
| diff --git a/content/browser/renderer_host/resource_handler.h b/content/browser/renderer_host/resource_handler.h
|
| index 7fca15ae134e5149780d1589800e852e663de93b..85c7f2bc795e7552eee3f408173d15f602f61c08 100644
|
| --- a/content/browser/renderer_host/resource_handler.h
|
| +++ b/content/browser/renderer_host/resource_handler.h
|
| @@ -30,7 +30,7 @@ class GURL;
|
| // See the implementations of this interface defined below.
|
| class ResourceHandler
|
| : public base::RefCountedThreadSafe<
|
| - ResourceHandler, BrowserThread::DeleteOnIOThread> {
|
| + ResourceHandler, content::BrowserThread::DeleteOnIOThread> {
|
| public:
|
| // Called as upload progress is made.
|
| virtual bool OnUploadProgress(int request_id,
|
| @@ -87,7 +87,7 @@ class ResourceHandler
|
| virtual void OnDataDownloaded(int request_id, int bytes_downloaded) {}
|
|
|
| protected:
|
| - friend class BrowserThread;
|
| + friend class content::BrowserThread;
|
| friend class DeleteTask<ResourceHandler>;
|
|
|
| virtual ~ResourceHandler() {}
|
|
|