| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/tab_contents/constrained_window.h" | 9 #include "chrome/browser/tab_contents/constrained_window.h" |
| 10 #include "gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
| 11 #include "views/window/dialog_delegate.h" | 11 #include "views/window/dialog_delegate.h" |
| 12 | 12 |
| 13 class ConstrainedWindow; | 13 class ConstrainedWindow; |
| 14 class MessageBoxView; | 14 class MessageBoxView; |
| 15 class NavigationController; | 15 class NavigationController; |
| 16 class RepostFormWarningController; | 16 class RepostFormWarningController; |
| 17 class TabContents; | 17 class TabContents; |
| 18 namespace views { | 18 namespace views { |
| 19 class Window; | 19 class Window; |
| 20 } | 20 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 47 | 47 |
| 48 // The message box view whose commands we handle. | 48 // The message box view whose commands we handle. |
| 49 MessageBoxView* message_box_view_; | 49 MessageBoxView* message_box_view_; |
| 50 | 50 |
| 51 scoped_ptr<RepostFormWarningController> controller_; | 51 scoped_ptr<RepostFormWarningController> controller_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(RepostFormWarningView); | 53 DISALLOW_COPY_AND_ASSIGN(RepostFormWarningView); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 #endif // CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_ | 56 #endif // CHROME_BROWSER_UI_VIEWS_REPOST_FORM_WARNING_VIEW_H_ |
| OLD | NEW |