Index: content/public/browser/screen_orientation_provider.h |
diff --git a/content/public/browser/screen_orientation_provider.h b/content/public/browser/screen_orientation_provider.h |
index 2a306381465df1c7f08402217cdca082eaeabe39..7879d3455d7d772758ecc399209d2ac7aaf8360b 100644 |
--- a/content/public/browser/screen_orientation_provider.h |
+++ b/content/public/browser/screen_orientation_provider.h |
@@ -23,7 +23,7 @@ class CONTENT_EXPORT ScreenOrientationProvider : public WebContentsObserver { |
public: |
ScreenOrientationProvider(ScreenOrientationDispatcherHost* dispatcher_host, |
WebContents* web_contents); |
- virtual ~ScreenOrientationProvider(); |
+ ~ScreenOrientationProvider() override; |
// Lock the screen orientation to |orientations|. |
void LockOrientation(int request_id, |
@@ -41,7 +41,7 @@ class CONTENT_EXPORT ScreenOrientationProvider : public WebContentsObserver { |
static void SetDelegate(ScreenOrientationDelegate* delegate_); |
// WebContentsObserver |
- virtual void DidToggleFullscreenModeForTab(bool entered_fullscreen) override; |
+ void DidToggleFullscreenModeForTab(bool entered_fullscreen) override; |
private: |
struct LockInformation { |