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

Unified Diff: chrome/browser/notifications/balloon_host.h

Issue 7464009: Removal of Profile from content part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: slight tweaking for comments Created 9 years, 5 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 | « chrome/browser/external_tab_container_win.cc ('k') | chrome/browser/notifications/balloon_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/notifications/balloon_host.h
diff --git a/chrome/browser/notifications/balloon_host.h b/chrome/browser/notifications/balloon_host.h
index e91cb05d0f319f0de7a6a697f9b1a014ba2f24ac..bc552010ab1071e7ae37d817261a215f36c49e91 100644
--- a/chrome/browser/notifications/balloon_host.h
+++ b/chrome/browser/notifications/balloon_host.h
@@ -61,39 +61,39 @@ class BalloonHost : public RenderViewHostDelegate,
virtual ViewType::Type GetRenderViewType() const OVERRIDE;
virtual RenderViewHostDelegate::View* GetViewDelegate() OVERRIDE;
virtual void HandleMouseDown() OVERRIDE;
+ virtual RendererPreferences GetRendererPrefs(
+ content::BrowserContext* browser_context) const OVERRIDE;
// RenderViewHostDelegate::View methods. Only the ones for opening new
// windows are currently implemented.
virtual void CreateNewWindow(
int route_id,
- const ViewHostMsg_CreateWindow_Params& params);
- virtual void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type) {}
- virtual void CreateNewFullscreenWidget(int route_id) {}
+ const ViewHostMsg_CreateWindow_Params& params) OVERRIDE;
+ virtual void CreateNewWidget(int route_id,
+ WebKit::WebPopupType popup_type) OVERRIDE {}
+ virtual void CreateNewFullscreenWidget(int route_id) OVERRIDE {}
virtual void ShowCreatedWindow(int route_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
- bool user_gesture);
+ bool user_gesture) OVERRIDE;
virtual void ShowCreatedWidget(int route_id,
- const gfx::Rect& initial_pos) {}
- virtual void ShowCreatedFullscreenWidget(int route_id) {}
- virtual void ShowContextMenu(const ContextMenuParams& params) {}
+ const gfx::Rect& initial_pos) OVERRIDE {}
+ virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE {}
+ virtual void ShowContextMenu(const ContextMenuParams& params) OVERRIDE {}
virtual void ShowPopupMenu(const gfx::Rect& bounds,
int item_height,
double item_font_size,
int selected_item,
const std::vector<WebMenuItem>& items,
- bool right_aligned) {}
- virtual void StartDragging(const WebDropData& drop_data,
- WebKit::WebDragOperationsMask allowed_ops) {}
+ bool right_aligned) OVERRIDE {}
virtual void StartDragging(const WebDropData&,
WebKit::WebDragOperationsMask,
const SkBitmap&,
- const gfx::Point&) {}
- virtual void UpdateDragCursor(WebKit::WebDragOperation operation) {}
- virtual void GotFocus() {}
- virtual void TakeFocus(bool reverse) {}
- virtual void UpdatePreferredSize(const gfx::Size& pref_size);
- virtual RendererPreferences GetRendererPrefs(Profile* profile) const;
+ const gfx::Point&) OVERRIDE {}
+ virtual void UpdateDragCursor(WebKit::WebDragOperation operation) OVERRIDE {}
+ virtual void GotFocus() OVERRIDE {}
+ virtual void TakeFocus(bool reverse) OVERRIDE {}
+ virtual void UpdatePreferredSize(const gfx::Size& pref_size) OVERRIDE;
// Enable Web UI. This has to be called before renderer is created.
void EnableWebUI();
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome/browser/notifications/balloon_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698