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

Unified Diff: chrome/browser/chromeos/login/web_page_screen.h

Issue 8505016: chromeos: Add missing OVERRIDE annotation to classes implementing TabContentsDelegate::IsPopup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | « no previous file | chrome/browser/chromeos/login/web_page_screen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/web_page_screen.h
diff --git a/chrome/browser/chromeos/login/web_page_screen.h b/chrome/browser/chromeos/login/web_page_screen.h
index e314dae496477ce237cfb262b6c526276453a4a4..ff2cea6312c74eb2a38927f037dad65d4846ea9d 100644
--- a/chrome/browser/chromeos/login/web_page_screen.h
+++ b/chrome/browser/chromeos/login/web_page_screen.h
@@ -6,6 +6,8 @@
#define CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_SCREEN_H_
#pragma once
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/timer.h"
#include "chrome/browser/chromeos/login/screen_observer.h"
#include "content/browser/tab_contents/tab_contents_delegate.h"
@@ -25,11 +27,10 @@ class WebPageScreen : public TabContentsDelegate {
protected:
// TabContentsDelegate implementation:
- virtual bool IsPopup(TabContents* source);
virtual bool ShouldAddNavigationToHistory(
const history::HistoryAddPageArgs& add_page_args,
- content::NavigationType navigation_type);
- virtual bool HandleContextMenu(const ContextMenuParams& params);
+ content::NavigationType navigation_type) OVERRIDE;
+ virtual bool HandleContextMenu(const ContextMenuParams& params) OVERRIDE;
// Called by |timeout_timer_|. Stops page fetching and closes screen.
virtual void OnNetworkTimeout();
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/web_page_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698