From 387b71b7d1d1bf267cbe088136610959b319f3b3 Mon Sep 17 00:00:00 2001 From: "jhawkins@chromium.org" Date: Thu, 26 Feb 2009 01:51:21 +0000 Subject: Make chrome_plugin_host.cc and chrome_plugin_util.cc compile on Posix. Review URL: http://codereview.chromium.org/27150 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10436 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/dom_ui/html_dialog_contents.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chrome/browser/dom_ui') diff --git a/chrome/browser/dom_ui/html_dialog_contents.h b/chrome/browser/dom_ui/html_dialog_contents.h index ff31002..c047622 100644 --- a/chrome/browser/dom_ui/html_dialog_contents.h +++ b/chrome/browser/dom_ui/html_dialog_contents.h @@ -5,6 +5,7 @@ #ifndef CHROME_BROWSER_DOM_UI_HTML_DIALOG_CONTENTS_H__ #define CHROME_BROWSER_DOM_UI_HTML_DIALOG_CONTENTS_H__ +#include "base/gfx/size.h" #include "chrome/browser/dom_ui/dom_ui_host.h" // Implement this class to receive notifications. @@ -17,7 +18,7 @@ class HtmlDialogContentsDelegate { // Get the HTML file path for the content to load in the dialog. virtual GURL GetDialogContentURL() const = 0; // Get the size of the dialog. - virtual void GetDialogSize(CSize* size) const = 0; + virtual void GetDialogSize(gfx::Size* size) const = 0; // Gets the JSON string input to use when showing the dialog. virtual std::string GetDialogArgs() const = 0; // A callback to notify the delegate that the dialog closed. -- cgit v1.1