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

Unified Diff: chrome/browser/ui/webui/html_dialog_ui.h

Issue 8741010: TaskManager: Added functionality to remember the size of the task manager dialog. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
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
Index: chrome/browser/ui/webui/html_dialog_ui.h
diff --git a/chrome/browser/ui/webui/html_dialog_ui.h b/chrome/browser/ui/webui/html_dialog_ui.h
index 390790d66639d41a662153d2dd2a0337be49a6d4..3a5ad6a8fbea7d8c50f3efda969920d5e55a504a 100644
--- a/chrome/browser/ui/webui/html_dialog_ui.h
+++ b/chrome/browser/ui/webui/html_dialog_ui.h
@@ -12,6 +12,7 @@
#include "base/string16.h"
#include "chrome/browser/ui/webui/chrome_web_ui.h"
#include "googleurl/src/gurl.h"
+#include "ui/gfx/rect.h"
struct ContextMenuParams;
@@ -69,6 +70,9 @@ class HtmlDialogUIDelegate {
// customized menu.
virtual bool HandleContextMenu(const ContextMenuParams& params);
+ // Stores the dialog bounds.
+ virtual void StoreDialogSize(gfx::Rect dialog_bounds){}
James Hawkins 2011/11/30 16:20:32 Space after closing parenthesis.
NaveenBobbili (Motorola) 2011/12/01 07:31:21 Done.
+
protected:
virtual ~HtmlDialogUIDelegate() {}
};

Powered by Google App Engine
This is Rietveld 408576698