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

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

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 | « content/app/content_main_runner.cc ('k') | 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 c4294ea13d579e715ff8e335993da77bd07eb834..ee41cb933feb7421eae479f97f0964f7bb41ecfb 100644
--- a/content/child/appcache/appcache_backend_proxy.h
+++ b/content/child/appcache/appcache_backend_proxy.h
@@ -20,28 +20,24 @@ 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 SelectCache(int host_id,
- const GURL& document_url,
- const int64 cache_document_was_loaded_from,
- const GURL& manifest_url) override;
- virtual void SelectCacheForWorker(
- int host_id,
- int parent_process_id,
- int parent_host_id) override;
- virtual void SelectCacheForSharedWorker(
- int host_id,
- 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;
- virtual void GetResourceList(
+ void RegisterHost(int host_id) override;
+ void UnregisterHost(int host_id) override;
+ void SetSpawningHostId(int host_id, int spawning_host_id) override;
+ void SelectCache(int host_id,
+ const GURL& document_url,
+ const int64 cache_document_was_loaded_from,
+ const GURL& manifest_url) override;
+ void SelectCacheForWorker(int host_id,
+ int parent_process_id,
+ int parent_host_id) override;
+ void SelectCacheForSharedWorker(int host_id, int64 appcache_id) override;
+ void MarkAsForeignEntry(int host_id,
+ const GURL& document_url,
+ int64 cache_document_was_loaded_from) override;
+ AppCacheStatus GetStatus(int host_id) override;
+ bool StartUpdate(int host_id) override;
+ bool SwapCache(int host_id) override;
+ void GetResourceList(
int host_id,
std::vector<AppCacheResourceInfo>* resource_infos) override;
« no previous file with comments | « content/app/content_main_runner.cc ('k') | content/child/appcache/appcache_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698