Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Unified Diff: content/child/appcache/appcache_backend_proxy.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/child/appcache/appcache_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « no previous file | content/child/appcache/appcache_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698