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

Unified Diff: chrome/browser/ui/panels/panel.cc

Issue 7011015: Show "About panel" bubble on Windows. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 7 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
Index: chrome/browser/ui/panels/panel.cc
===================================================================
--- chrome/browser/ui/panels/panel.cc (revision 85006)
+++ chrome/browser/ui/panels/panel.cc (working copy)
@@ -11,6 +11,7 @@
Panel::Panel(Browser* browser, const gfx::Rect& bounds)
: bounds_(bounds),
+ originator_(NULL),
jennb 2011/05/12 18:15:51 ordering in .h has originator_ before bounds_
jianli 2011/05/24 00:56:24 originator_ has been removed.
minimized_(false) {
browser_window_.reset(CreateNativePanel(browser, this));
}
@@ -370,6 +371,10 @@
}
#endif
+Panel* Panel::GetAsPanel() {
+ return this;
+}
+
void Panel::DestroyBrowser() {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698