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

Unified Diff: content/browser/site_instance_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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: content/browser/site_instance_impl.h
diff --git a/content/browser/site_instance_impl.h b/content/browser/site_instance_impl.h
index 9086e09de2c5901cfee90f21c37ba4bc9a6fed37..35d1a1e178d33f04ae620aa8cbaeecce2851191d 100644
--- a/content/browser/site_instance_impl.h
+++ b/content/browser/site_instance_impl.h
@@ -19,14 +19,14 @@ class CONTENT_EXPORT SiteInstanceImpl : public SiteInstance,
public RenderProcessHostObserver {
public:
// SiteInstance interface overrides.
- virtual int32 GetId() OVERRIDE;
- virtual bool HasProcess() const OVERRIDE;
- virtual RenderProcessHost* GetProcess() OVERRIDE;
- virtual BrowserContext* GetBrowserContext() const OVERRIDE;
- virtual const GURL& GetSiteURL() const OVERRIDE;
- virtual SiteInstance* GetRelatedSiteInstance(const GURL& url) OVERRIDE;
- virtual bool IsRelatedSiteInstance(const SiteInstance* instance) OVERRIDE;
- virtual size_t GetRelatedActiveContentsCount() OVERRIDE;
+ virtual int32 GetId() override;
+ virtual bool HasProcess() const override;
+ virtual RenderProcessHost* GetProcess() override;
+ virtual BrowserContext* GetBrowserContext() const override;
+ virtual const GURL& GetSiteURL() const override;
+ virtual SiteInstance* GetRelatedSiteInstance(const GURL& url) override;
+ virtual bool IsRelatedSiteInstance(const SiteInstance* instance) override;
+ virtual size_t GetRelatedActiveContentsCount() override;
// Set the web site that this SiteInstance is rendering pages for.
// This includes the scheme and registered domain, but not the port. If the
@@ -98,7 +98,7 @@ class CONTENT_EXPORT SiteInstanceImpl : public SiteInstance,
private:
// RenderProcessHostObserver implementation.
- virtual void RenderProcessHostDestroyed(RenderProcessHost* host) OVERRIDE;
+ virtual void RenderProcessHostDestroyed(RenderProcessHost* host) override;
// Used to restrict a process' origin access rights.
void LockToOrigin();
« no previous file with comments | « content/browser/signed_certificate_timestamp_store_impl.h ('k') | content/browser/site_instance_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698