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

Unified Diff: chrome/browser/ui/blocked_content/blocked_content_container.h

Issue 8614003: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « chrome/browser/transport_security_persister.h ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/blocked_content/blocked_content_container.h
diff --git a/chrome/browser/ui/blocked_content/blocked_content_container.h b/chrome/browser/ui/blocked_content/blocked_content_container.h
index c6a261e57d03d61344fd56b026f9ad0d5f788844..cc92f27000b37924d6805e1fd304ce9e639533bf 100644
--- a/chrome/browser/ui/blocked_content/blocked_content_container.h
+++ b/chrome/browser/ui/blocked_content/blocked_content_container.h
@@ -65,25 +65,26 @@ class BlockedContentContainer : public BlockedContentTabHelperDelegate,
WindowOpenDisposition disposition,
content::PageTransition transition) OVERRIDE;
virtual TabContents* OpenURLFromTab(TabContents* source,
- const OpenURLParams& params);
+ const OpenURLParams& params) OVERRIDE;
// Forwards AddNewContents to our |owner_|.
virtual void AddNewContents(TabContents* source,
TabContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_position,
- bool user_gesture);
+ bool user_gesture) OVERRIDE;
// Removes |source| from our internal list of blocked contents.
- virtual void CloseContents(TabContents* source);
+ virtual void CloseContents(TabContents* source) OVERRIDE;
// Changes the opening rectangle associated with |source|.
- virtual void MoveContents(TabContents* source, const gfx::Rect& new_bounds);
+ virtual void MoveContents(TabContents* source,
+ const gfx::Rect& new_bounds) OVERRIDE;
virtual bool IsPopupOrPanel(const TabContents* source) const OVERRIDE;
// Always returns true.
- virtual bool ShouldSuppressDialogs();
+ virtual bool ShouldSuppressDialogs() OVERRIDE;
// Maximum number of blocked contents we allow. No page should really need
// this many anyway. If reached it typically means there is a compromised
« no previous file with comments | « chrome/browser/transport_security_persister.h ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698