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

Unified Diff: chrome/browser/cocoa/repost_form_warning_mac.h

Issue 327009: [Mac] Implement form resubmission warning dialog (Closed)
Patch Set: rebase tot Created 11 years, 2 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
« no previous file with comments | « chrome/browser/cocoa/browser_window_cocoa.mm ('k') | chrome/browser/cocoa/repost_form_warning_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/repost_form_warning_mac.h
diff --git a/chrome/browser/cocoa/repost_form_warning_mac.h b/chrome/browser/cocoa/repost_form_warning_mac.h
new file mode 100644
index 0000000000000000000000000000000000000000..d55beeb2eff76cb7f9816f2eca460995f7bfda3b
--- /dev/null
+++ b/chrome/browser/cocoa/repost_form_warning_mac.h
@@ -0,0 +1,57 @@
+// Copyright (c) 2009 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_COCOA_REPOST_FORM_WARNING_MAC_H_
+#define CHROME_BROWSER_COCOA_REPOST_FORM_WARNING_MAC_H_
+
+#import <Cocoa/Cocoa.h>
+
+#include "base/scoped_nsobject.h"
+#include "chrome/common/notification_registrar.h"
+
+class NavigationController;
+class RepostFormWarningMac;
+
+@interface RepostDelegate : NSObject {
pink (ping after 24hrs) 2009/11/02 17:36:19 class needs a comment. Does this really need to be
Nico 2009/11/02 18:05:16 Done.
+ RepostFormWarningMac* warning_; // weak, owns us.
+}
+- (id)initWithWarning:(RepostFormWarningMac*)warning;
+- (void)alertDidEnd:(NSAlert*)alert
+ returnCode:(int)returnCode
+ contextInfo:(void*)contextInfo;
+@end
+
+class RepostFormWarningMac : public NotificationObserver {
pink (ping after 24hrs) 2009/11/02 17:36:19 class needs a comment. Especially needs to mention
Nico 2009/11/02 18:05:16 Done.
+ public:
+ RepostFormWarningMac(NSWindow* parent,
+ NavigationController* navigation_controller);
+ virtual ~RepostFormWarningMac();
+
+ void Confirm();
+ void Cancel();
+
+ private:
+ // NotificationObserver implementation.
+ // Watch for a new load or a closed tab and dismiss the dialog if they occur.
+ virtual void Observe(NotificationType type,
+ const NotificationSource& source,
+ const NotificationDetails& details);
+
+ // Close the sheet. This will only be done once, even if Destroy is called
+ // multiple times (eg, from both Confirm and Observe.)
+ void Destroy();
+
+ NotificationRegistrar registrar_;
+
+ // Navigation controller, used to continue the reload.
+ NavigationController* navigation_controller_;
+
+ scoped_nsobject<NSAlert> alert_;
+
+ scoped_nsobject<RepostDelegate> delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(RepostFormWarningMac);
+};
+
+#endif // CHROME_BROWSER_COCOA_REPOST_FORM_WARNING_MAC_H_
« no previous file with comments | « chrome/browser/cocoa/browser_window_cocoa.mm ('k') | chrome/browser/cocoa/repost_form_warning_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698