| Index: chrome/browser/views/input_window.cc
|
| ===================================================================
|
| --- chrome/browser/views/input_window.cc (revision 11286)
|
| +++ chrome/browser/views/input_window.cc (working copy)
|
| @@ -35,6 +35,7 @@
|
| virtual bool Accept();
|
| virtual bool Cancel();
|
| virtual void WindowClosing();
|
| + virtual void DeleteDelegate();
|
| virtual std::wstring GetWindowTitle() const;
|
| virtual bool IsModal() const { return true; }
|
| virtual views::View* GetContentsView();
|
| @@ -92,6 +93,10 @@
|
| delegate_->WindowClosing();
|
| }
|
|
|
| +void ContentView::DeleteDelegate() {
|
| + delegate_->DeleteDelegate();
|
| +}
|
| +
|
| std::wstring ContentView::GetWindowTitle() const {
|
| return delegate_->GetWindowTitle();
|
| }
|
|
|