| Index: chrome/browser/tab_contents/background_contents.h
|
| diff --git a/chrome/browser/tab_contents/background_contents.h b/chrome/browser/tab_contents/background_contents.h
|
| index 7d224ab682f1d1b9f0c8aefe3b96ebe9d883b30e..5e443fd45d9ecaf1b32c850cb748a48f254bc24f 100644
|
| --- a/chrome/browser/tab_contents/background_contents.h
|
| +++ b/chrome/browser/tab_contents/background_contents.h
|
| @@ -49,31 +49,30 @@ class BackgroundContents : public content::WebContentsDelegate,
|
| Delegate* delegate,
|
| const std::string& partition_id,
|
| content::SessionStorageNamespace* session_storage_namespace);
|
| - virtual ~BackgroundContents();
|
| + ~BackgroundContents() override;
|
|
|
| content::WebContents* web_contents() const { return web_contents_.get(); }
|
| virtual const GURL& GetURL() const;
|
|
|
| // content::WebContentsDelegate implementation:
|
| - virtual void CloseContents(content::WebContents* source) override;
|
| - virtual bool ShouldSuppressDialogs() override;
|
| - virtual void DidNavigateMainFramePostCommit(
|
| - content::WebContents* tab) override;
|
| - virtual void AddNewContents(content::WebContents* source,
|
| - content::WebContents* new_contents,
|
| - WindowOpenDisposition disposition,
|
| - const gfx::Rect& initial_pos,
|
| - bool user_gesture,
|
| - bool* was_blocked) override;
|
| - virtual bool IsNeverVisible(content::WebContents* web_contents) override;
|
| + void CloseContents(content::WebContents* source) override;
|
| + bool ShouldSuppressDialogs() override;
|
| + void DidNavigateMainFramePostCommit(content::WebContents* tab) override;
|
| + void AddNewContents(content::WebContents* source,
|
| + content::WebContents* new_contents,
|
| + WindowOpenDisposition disposition,
|
| + const gfx::Rect& initial_pos,
|
| + bool user_gesture,
|
| + bool* was_blocked) override;
|
| + bool IsNeverVisible(content::WebContents* web_contents) override;
|
|
|
| // content::WebContentsObserver implementation:
|
| - virtual void RenderProcessGone(base::TerminationStatus status) override;
|
| + void RenderProcessGone(base::TerminationStatus status) override;
|
|
|
| // content::NotificationObserver
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| protected:
|
| // Exposed for testing.
|
|
|