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

Unified Diff: chrome/browser/profiles/profile_io_data.h

Issue 654223009: Standardize usage of virtual/override/final in chrome/browser/profiles/ (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
Index: chrome/browser/profiles/profile_io_data.h
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
index ce911f99803c9cd8ebe1ab3651ea6f7bbf068c51..9695bab88b6017152743a947482f05e226837755 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -273,7 +273,7 @@ class ProfileIOData {
scoped_ptr<net::HttpTransactionFactory> http_factory);
private:
- virtual ~MediaRequestContext();
+ ~MediaRequestContext() override;
scoped_ptr<net::HttpTransactionFactory> http_factory_;
};
@@ -290,7 +290,7 @@ class ProfileIOData {
void SetJobFactory(scoped_ptr<net::URLRequestJobFactory> job_factory);
private:
- virtual ~AppRequestContext();
+ ~AppRequestContext() override;
scoped_refptr<net::CookieStore> cookie_store_;
scoped_ptr<net::HttpTransactionFactory> http_factory_;
@@ -486,19 +486,19 @@ class ProfileIOData {
class ResourceContext : public content::ResourceContext {
public:
explicit ResourceContext(ProfileIOData* io_data);
- virtual ~ResourceContext();
+ ~ResourceContext() override;
// ResourceContext implementation:
- virtual net::HostResolver* GetHostResolver() override;
- virtual net::URLRequestContext* GetRequestContext() override;
- virtual scoped_ptr<net::ClientCertStore> CreateClientCertStore() override;
- virtual void CreateKeygenHandler(
+ net::HostResolver* GetHostResolver() override;
+ net::URLRequestContext* GetRequestContext() override;
+ scoped_ptr<net::ClientCertStore> CreateClientCertStore() override;
+ void CreateKeygenHandler(
uint32 key_size_in_bits,
const std::string& challenge_string,
const GURL& url,
const base::Callback<void(scoped_ptr<net::KeygenHandler>)>& callback)
override;
- virtual SaltCallback GetMediaDeviceIDSalt() override;
+ SaltCallback GetMediaDeviceIDSalt() override;
private:
friend class ProfileIOData;

Powered by Google App Engine
This is Rietveld 408576698