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

Unified Diff: chrome/browser/ui/views/keyboard_overlay_delegate.h

Issue 10214001: WebDialogs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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/views/keyboard_overlay_delegate.h
===================================================================
--- chrome/browser/ui/views/keyboard_overlay_delegate.h (revision 133969)
+++ chrome/browser/ui/views/keyboard_overlay_delegate.h (working copy)
@@ -5,24 +5,24 @@
#ifndef CHROME_BROWSER_UI_VIEWS_KEYBOARD_OVERLAY_DELEGATE_H_
#define CHROME_BROWSER_UI_VIEWS_KEYBOARD_OVERLAY_DELEGATE_H_
-#include "chrome/browser/ui/webui/html_dialog_ui.h"
+#include "chrome/browser/ui/webui/web_dialog_ui.h"
-class HtmlDialogView;
+class WebDialogView;
-class KeyboardOverlayDelegate : public HtmlDialogUIDelegate {
+class KeyboardOverlayDelegate : public WebDialogDelegate {
public:
explicit KeyboardOverlayDelegate(const string16& title);
- HtmlDialogView* view() { return view_; }
- void set_view(HtmlDialogView* html_view) { view_ = html_view; }
+ WebDialogView* view() { return view_; }
+ void set_view(WebDialogView* view) { view_ = view; }
- // Overridden from HtmlDialogUIDelegate:
+ // Overridden from WebDialogDelegate:
virtual void GetDialogSize(gfx::Size* size) const OVERRIDE;
private:
virtual ~KeyboardOverlayDelegate();
- // Overridden from HtmlDialogUIDelegate:
+ // Overridden from WebDialogDelegate:
virtual ui::ModalType GetDialogModalType() const OVERRIDE;
virtual string16 GetDialogTitle() const OVERRIDE;
virtual GURL GetDialogContentURL() const OVERRIDE;
@@ -41,7 +41,7 @@
// The view associated with this delegate.
// This class does not own the pointer.
- HtmlDialogView* view_;
+ WebDialogView* view_;
DISALLOW_COPY_AND_ASSIGN(KeyboardOverlayDelegate);
};
« no previous file with comments | « chrome/browser/ui/views/html_dialog_view_browsertest.cc ('k') | chrome/browser/ui/views/keyboard_overlay_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698