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

Unified Diff: components/sessions/content/content_serialized_navigation_driver.h

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: components/sessions/content/content_serialized_navigation_driver.h
diff --git a/components/sessions/content/content_serialized_navigation_driver.h b/components/sessions/content/content_serialized_navigation_driver.h
index 499d258b0dd4dc35fc022009abd31f6d7942c933..c7829f243d3da1f4bc196d7d39d4a16fded6236a 100644
--- a/components/sessions/content/content_serialized_navigation_driver.h
+++ b/components/sessions/content/content_serialized_navigation_driver.h
@@ -18,17 +18,17 @@ namespace sessions {
class SESSIONS_EXPORT_PRIVATE ContentSerializedNavigationDriver
: public SerializedNavigationDriver {
public:
- virtual ~ContentSerializedNavigationDriver();
+ ~ContentSerializedNavigationDriver() override;
// Returns the singleton ContentSerializedNavigationDriver. Almost all
// callers should use SerializedNavigationDriver::Get() instead.
static ContentSerializedNavigationDriver* GetInstance();
// SerializedNavigationDriver implementation.
- virtual int GetDefaultReferrerPolicy() const override;
- virtual std::string GetSanitizedPageStateForPickle(
+ int GetDefaultReferrerPolicy() const override;
+ std::string GetSanitizedPageStateForPickle(
const SerializedNavigationEntry* navigation) const override;
- virtual void Sanitize(SerializedNavigationEntry* navigation) const override;
+ void Sanitize(SerializedNavigationEntry* navigation) const override;
private:
ContentSerializedNavigationDriver();

Powered by Google App Engine
This is Rietveld 408576698