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

Unified Diff: athena/content/web_contents_view_delegate_factory_impl.cc

Issue 623103002: replace OVERRIDE and FINAL with override and final in athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months 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 | « athena/content/web_activity.cc ('k') | athena/env/athena_env_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/content/web_contents_view_delegate_factory_impl.cc
diff --git a/athena/content/web_contents_view_delegate_factory_impl.cc b/athena/content/web_contents_view_delegate_factory_impl.cc
index 4dcc9de07ddbfe74117f0d6c7ee7734af7a18317..a47d0eba9ba83402841859210f36ce3966055e18 100644
--- a/athena/content/web_contents_view_delegate_factory_impl.cc
+++ b/athena/content/web_contents_view_delegate_factory_impl.cc
@@ -26,12 +26,12 @@ class WebContentsViewDelegateImpl : public content::WebContentsViewDelegate {
: web_contents_(web_contents) {}
virtual ~WebContentsViewDelegateImpl() {}
- virtual content::WebDragDestDelegate* GetDragDestDelegate() OVERRIDE {
+ virtual content::WebDragDestDelegate* GetDragDestDelegate() override {
// TODO(oshima): crbug.com/401610
return NULL;
}
- virtual bool Focus() OVERRIDE {
+ virtual bool Focus() override {
web_modal::PopupManager* popup_manager =
web_modal::PopupManager::FromWebContents(web_contents_);
if (popup_manager)
@@ -41,12 +41,12 @@ class WebContentsViewDelegateImpl : public content::WebContentsViewDelegate {
virtual void ShowContextMenu(
content::RenderFrameHost* render_frame_host,
- const content::ContextMenuParams& params) OVERRIDE {
+ const content::ContextMenuParams& params) override {
ShowMenu(BuildMenu(
content::WebContents::FromRenderFrameHost(render_frame_host), params));
}
- virtual void SizeChanged(const gfx::Size& size) OVERRIDE {
+ virtual void SizeChanged(const gfx::Size& size) override {
// TODO(oshima|sadrul): Implement this when sad_tab is componentized.
// See c/b/ui/views/tab_contents/chrome_web_contents_view_delegate_views.cc
}
@@ -56,10 +56,10 @@ class WebContentsViewDelegateImpl : public content::WebContentsViewDelegate {
const SkBitmap& zoomed_bitmap,
const gfx::NativeView content,
const base::Callback<void(ui::GestureEvent*)>& gesture_cb,
- const base::Callback<void(ui::MouseEvent*)>& mouse_cb) OVERRIDE {
+ const base::Callback<void(ui::MouseEvent*)>& mouse_cb) override {
}
- virtual void HideDisambiguationPopup() OVERRIDE {
+ virtual void HideDisambiguationPopup() override {
}
scoped_ptr<RenderViewContextMenuImpl> BuildMenu(
« no previous file with comments | « athena/content/web_activity.cc ('k') | athena/env/athena_env_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698