| Index: content/child/appcache/appcache_backend_proxy.h
|
| diff --git a/content/child/appcache/appcache_backend_proxy.h b/content/child/appcache/appcache_backend_proxy.h
|
| index 98eed36942869830ec827e6438bcacf2348d8da8..c4294ea13d579e715ff8e335993da77bd07eb834 100644
|
| --- a/content/child/appcache/appcache_backend_proxy.h
|
| +++ b/content/child/appcache/appcache_backend_proxy.h
|
| @@ -20,30 +20,30 @@ class AppCacheBackendProxy : public AppCacheBackend {
|
| IPC::Sender* sender() const { return sender_; }
|
|
|
| // AppCacheBackend methods
|
| - virtual void RegisterHost(int host_id) OVERRIDE;
|
| - virtual void UnregisterHost(int host_id) OVERRIDE;
|
| - virtual void SetSpawningHostId(int host_id, int spawning_host_id) OVERRIDE;
|
| + virtual void RegisterHost(int host_id) override;
|
| + virtual void UnregisterHost(int host_id) override;
|
| + virtual void SetSpawningHostId(int host_id, int spawning_host_id) override;
|
| virtual void SelectCache(int host_id,
|
| const GURL& document_url,
|
| const int64 cache_document_was_loaded_from,
|
| - const GURL& manifest_url) OVERRIDE;
|
| + const GURL& manifest_url) override;
|
| virtual void SelectCacheForWorker(
|
| int host_id,
|
| int parent_process_id,
|
| - int parent_host_id) OVERRIDE;
|
| + int parent_host_id) override;
|
| virtual void SelectCacheForSharedWorker(
|
| int host_id,
|
| - int64 appcache_id) OVERRIDE;
|
| + int64 appcache_id) override;
|
| virtual void MarkAsForeignEntry(
|
| int host_id,
|
| const GURL& document_url,
|
| - int64 cache_document_was_loaded_from) OVERRIDE;
|
| - virtual AppCacheStatus GetStatus(int host_id) OVERRIDE;
|
| - virtual bool StartUpdate(int host_id) OVERRIDE;
|
| - virtual bool SwapCache(int host_id) OVERRIDE;
|
| + int64 cache_document_was_loaded_from) override;
|
| + virtual AppCacheStatus GetStatus(int host_id) override;
|
| + virtual bool StartUpdate(int host_id) override;
|
| + virtual bool SwapCache(int host_id) override;
|
| virtual void GetResourceList(
|
| int host_id,
|
| - std::vector<AppCacheResourceInfo>* resource_infos) OVERRIDE;
|
| + std::vector<AppCacheResourceInfo>* resource_infos) override;
|
|
|
| private:
|
| IPC::Sender* sender_;
|
|
|