| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_REPOST_FORM_WARNING_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_REPOST_FORM_WARNING_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_REPOST_FORM_WARNING_CONTROLLER_H_ | 6 #define CHROME_BROWSER_REPOST_FORM_WARNING_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/tab_contents/constrained_window.h" | |
| 10 #include "chrome/common/notification_observer.h" | 9 #include "chrome/common/notification_observer.h" |
| 11 #include "chrome/common/notification_registrar.h" | 10 #include "chrome/common/notification_registrar.h" |
| 11 #include "content/browser/tab_contents/constrained_window.h" |
| 12 | 12 |
| 13 class TabContents; | 13 class TabContents; |
| 14 | 14 |
| 15 // This class is used to continue or cancel a pending reload when the | 15 // This class is used to continue or cancel a pending reload when the |
| 16 // repost form warning is shown. It is owned by the platform-dependent | 16 // repost form warning is shown. It is owned by the platform-dependent |
| 17 // |RepostFormWarning{Gtk,Mac,View}| classes. | 17 // |RepostFormWarning{Gtk,Mac,View}| classes. |
| 18 class RepostFormWarningController : public NotificationObserver { | 18 class RepostFormWarningController : public NotificationObserver { |
| 19 public: | 19 public: |
| 20 explicit RepostFormWarningController(TabContents* tab_contents); | 20 explicit RepostFormWarningController(TabContents* tab_contents); |
| 21 virtual ~RepostFormWarningController(); | 21 virtual ~RepostFormWarningController(); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 43 | 43 |
| 44 // Tab contents, used to continue the reload. | 44 // Tab contents, used to continue the reload. |
| 45 TabContents* tab_contents_; | 45 TabContents* tab_contents_; |
| 46 | 46 |
| 47 ConstrainedWindow* window_; | 47 ConstrainedWindow* window_; |
| 48 | 48 |
| 49 DISALLOW_COPY_AND_ASSIGN(RepostFormWarningController); | 49 DISALLOW_COPY_AND_ASSIGN(RepostFormWarningController); |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 #endif // CHROME_BROWSER_REPOST_FORM_WARNING_CONTROLLER_H_ | 52 #endif // CHROME_BROWSER_REPOST_FORM_WARNING_CONTROLLER_H_ |
| OLD | NEW |