| OLD | NEW | 
|   1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |   1 // Copyright (c) 2006-2008 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_VIEWS_REPOST_FORM_WARNING_VIEW_H_ |   5 #ifndef CHROME_BROWSER_VIEWS_REPOST_FORM_WARNING_VIEW_H_ | 
|   6 #define CHROME_BROWSER_VIEWS_REPOST_FORM_WARNING_VIEW_H_ |   6 #define CHROME_BROWSER_VIEWS_REPOST_FORM_WARNING_VIEW_H_ | 
|   7  |   7  | 
|   8 #include "base/gfx/native_widget_types.h" |   8 #include "app/gfx/native_widget_types.h" | 
|   9 #include "chrome/common/notification_registrar.h" |   9 #include "chrome/common/notification_registrar.h" | 
|  10 #include "views/window/dialog_delegate.h" |  10 #include "views/window/dialog_delegate.h" | 
|  11  |  11  | 
|  12 class MessageBoxView; |  12 class MessageBoxView; | 
|  13 class NavigationController; |  13 class NavigationController; | 
|  14 namespace views { |  14 namespace views { | 
|  15 class Window; |  15 class Window; | 
|  16 } |  16 } | 
|  17  |  17  | 
|  18 class RepostFormWarningView : public views::DialogDelegate, |  18 class RepostFormWarningView : public views::DialogDelegate, | 
| (...skipping 29 matching lines...) Expand all  Loading... | 
|  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   // Navigation controller, used to continue the reload. |  51   // Navigation controller, used to continue the reload. | 
|  52   NavigationController* navigation_controller_; |  52   NavigationController* navigation_controller_; | 
|  53  |  53  | 
|  54   DISALLOW_COPY_AND_ASSIGN(RepostFormWarningView); |  54   DISALLOW_COPY_AND_ASSIGN(RepostFormWarningView); | 
|  55 }; |  55 }; | 
|  56  |  56  | 
|  57 #endif  // CHROME_BROWSER_VIEWS_REPOST_FORM_WARNING_VIEW_H_ |  57 #endif  // CHROME_BROWSER_VIEWS_REPOST_FORM_WARNING_VIEW_H_ | 
| OLD | NEW |