summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dom_ui/html_dialog_contents.h
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-26 01:51:21 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-26 01:51:21 +0000
commit387b71b7d1d1bf267cbe088136610959b319f3b3 (patch)
treec364e3543f8b9185f65086ef678989edd0b69966 /chrome/browser/dom_ui/html_dialog_contents.h
parentceed72954b3444d1f06468a2edc6fe41aeb8f012 (diff)
downloadchromium_src-387b71b7d1d1bf267cbe088136610959b319f3b3.zip
chromium_src-387b71b7d1d1bf267cbe088136610959b319f3b3.tar.gz
chromium_src-387b71b7d1d1bf267cbe088136610959b319f3b3.tar.bz2
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
Diffstat (limited to 'chrome/browser/dom_ui/html_dialog_contents.h')
-rw-r--r--chrome/browser/dom_ui/html_dialog_contents.h3
1 files changed, 2 insertions, 1 deletions
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.