| 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 #include "chrome/browser/repost_form_warning_controller.h" | 5 #include "chrome/browser/repost_form_warning_controller.h" |
| 6 | 6 |
| 7 #if defined(TOOLKIT_USES_GTK) | 7 #if defined(TOOLKIT_USES_GTK) |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 #endif | 9 #endif |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
| 13 #include "content/browser/tab_contents/navigation_controller.h" | 13 #include "content/public/browser/navigation_controller.h" |
| 14 #include "content/public/browser/notification_source.h" | 14 #include "content/public/browser/notification_source.h" |
| 15 #include "content/public/browser/notification_types.h" | 15 #include "content/public/browser/notification_types.h" |
| 16 #include "content/public/browser/web_contents.h" | 16 #include "content/public/browser/web_contents.h" |
| 17 #include "grit/generated_resources.h" | 17 #include "grit/generated_resources.h" |
| 18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 19 | 19 |
| 20 using content::WebContents; | 20 using content::WebContents; |
| 21 | 21 |
| 22 RepostFormWarningController::RepostFormWarningController( | 22 RepostFormWarningController::RepostFormWarningController( |
| 23 WebContents* web_contents) | 23 WebContents* web_contents) |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 int type, | 65 int type, |
| 66 const content::NotificationSource& source, | 66 const content::NotificationSource& source, |
| 67 const content::NotificationDetails& details) { | 67 const content::NotificationDetails& details) { |
| 68 // Close the dialog if we show an additional dialog, to avoid them | 68 // Close the dialog if we show an additional dialog, to avoid them |
| 69 // stacking up. | 69 // stacking up. |
| 70 if (type == content::NOTIFICATION_REPOST_WARNING_SHOWN) | 70 if (type == content::NOTIFICATION_REPOST_WARNING_SHOWN) |
| 71 Cancel(); | 71 Cancel(); |
| 72 else | 72 else |
| 73 TabModalConfirmDialogDelegate::Observe(type, source, details); | 73 TabModalConfirmDialogDelegate::Observe(type, source, details); |
| 74 } | 74 } |
| OLD | NEW |