| Index: chrome/browser/ui/views/repost_form_warning_view.h
|
| diff --git a/chrome/browser/ui/views/repost_form_warning_view.h b/chrome/browser/ui/views/repost_form_warning_view.h
|
| deleted file mode 100644
|
| index d12301f8b85c33c9aa395f923e4e828d7edff9d1..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/ui/views/repost_form_warning_view.h
|
| +++ /dev/null
|
| @@ -1,53 +0,0 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_
|
| -#define CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_
|
| -#pragma once
|
| -
|
| -#include "ui/gfx/native_widget_types.h"
|
| -#include "ui/views/window/dialog_delegate.h"
|
| -
|
| -class RepostFormWarningController;
|
| -class TabContents;
|
| -
|
| -namespace views {
|
| -class MessageBoxView;
|
| -}
|
| -
|
| -// Displays a dialog that warns the user that they are about to resubmit
|
| -// a form.
|
| -// To display the dialog, allocate this object on the heap. It will open the
|
| -// dialog from its constructor and then delete itself when the user dismisses
|
| -// the dialog.
|
| -class RepostFormWarningView : public views::DialogDelegate {
|
| - public:
|
| - // Use BrowserWindow::ShowRepostFormWarningDialog to use.
|
| - RepostFormWarningView(gfx::NativeWindow parent_window,
|
| - TabContents* tab_contents);
|
| -
|
| - // views::DialogDelegate:
|
| - virtual string16 GetWindowTitle() const OVERRIDE;
|
| - virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE;
|
| - virtual void DeleteDelegate() OVERRIDE;
|
| - virtual bool Cancel() OVERRIDE;
|
| - virtual bool Accept() OVERRIDE;
|
| -
|
| - // views::WidgetDelegate:
|
| - virtual views::View* GetContentsView() OVERRIDE;
|
| - virtual views::Widget* GetWidget() OVERRIDE;
|
| - virtual const views::Widget* GetWidget() const OVERRIDE;
|
| -
|
| - private:
|
| - virtual ~RepostFormWarningView();
|
| -
|
| - scoped_ptr<RepostFormWarningController> controller_;
|
| -
|
| - // The message box view whose commands we handle.
|
| - views::MessageBoxView* message_box_view_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(RepostFormWarningView);
|
| -};
|
| -
|
| -#endif // CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_
|
|
|