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

Unified Diff: chrome/browser/ui/webui/repost_form_warning_ui.h

Issue 8851007: WIP / Do not commit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « chrome/browser/ui/webui/downloads_dom_handler.cc ('k') | chrome/browser/ui/webui/repost_form_warning_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/repost_form_warning_ui.h
diff --git a/chrome/browser/ui/webui/repost_form_warning_ui.h b/chrome/browser/ui/webui/repost_form_warning_ui.h
deleted file mode 100644
index a8a3e72557ddaae3cde3b7fe10b6baf9800a816e..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/repost_form_warning_ui.h
+++ /dev/null
@@ -1,47 +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_WEBUI_REPOST_FORM_WARNING_UI_H_
-#define CHROME_BROWSER_UI_WEBUI_REPOST_FORM_WARNING_UI_H_
-#pragma once
-
-#include "base/memory/scoped_ptr.h"
-#include "ui/gfx/native_widget_types.h"
-
-class BrowserWindow;
-class RepostFormWarningController;
-class TabContents;
-
-namespace browser {
-void ShowRepostFormWarningDialog(gfx::NativeWindow parent_window,
- TabContents* tab_contents);
-}
-
-// 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 RepostFormWarningUI {
- public:
- // Invoked when the dialog is closed. Notifies the controller of the user's
- // response and deletes this object.
- void OnDialogClosed(bool repost);
-
- private:
- friend void browser::ShowRepostFormWarningDialog(
- gfx::NativeWindow parent_window, TabContents* tab_contents);
-
- // Call BrowserWindow::ShowRepostFormWarningDialog() to use.
- RepostFormWarningUI(gfx::NativeWindow parent_window,
- TabContents* tab_contents);
-
- virtual ~RepostFormWarningUI();
-
- scoped_ptr<RepostFormWarningController> controller_;
-
- DISALLOW_COPY_AND_ASSIGN(RepostFormWarningUI);
-};
-
-#endif // CHROME_BROWSER_UI_WEBUI_REPOST_FORM_WARNING_UI_H_
« no previous file with comments | « chrome/browser/ui/webui/downloads_dom_handler.cc ('k') | chrome/browser/ui/webui/repost_form_warning_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698