| Index: content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h
|
| diff --git a/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h b/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h
|
| index c22d65bd3556e79af9dc7dc9a2839363d49d53a7..a88408378837f4fc87ec3035f40deb85b4470fbd 100644
|
| --- a/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h
|
| +++ b/content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h
|
| @@ -24,19 +24,19 @@ class CONTENT_EXPORT ScreenOrientationDispatcherHostImpl
|
| public WebContentsObserver {
|
| public:
|
| explicit ScreenOrientationDispatcherHostImpl(WebContents* web_contents);
|
| - virtual ~ScreenOrientationDispatcherHostImpl();
|
| + ~ScreenOrientationDispatcherHostImpl() override;
|
|
|
| // ScreenOrientationDispatcherHost:
|
| - virtual void NotifyLockSuccess(int request_id) override;
|
| - virtual void NotifyLockError(int request_id,
|
| - blink::WebLockOrientationError error) override;
|
| - virtual void OnOrientationChange() override;
|
| + void NotifyLockSuccess(int request_id) override;
|
| + void NotifyLockError(int request_id,
|
| + blink::WebLockOrientationError error) override;
|
| + void OnOrientationChange() override;
|
|
|
| // WebContentsObserver:
|
| - virtual bool OnMessageReceived(const IPC::Message&,
|
| - RenderFrameHost* render_frame_host) override;
|
| - virtual void DidNavigateMainFrame(const LoadCommittedDetails& details,
|
| - const FrameNavigateParams& params) override;
|
| + bool OnMessageReceived(const IPC::Message&,
|
| + RenderFrameHost* render_frame_host) override;
|
| + void DidNavigateMainFrame(const LoadCommittedDetails& details,
|
| + const FrameNavigateParams& params) override;
|
|
|
| private:
|
| void OnLockRequest(RenderFrameHost* render_frame_host,
|
|
|