| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/extensions/extension_uninstall_dialog.h" | 5 #include "chrome/browser/extensions/extension_uninstall_dialog.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "chrome/common/chrome_notification_types.h" | 9 #include "chrome/common/chrome_notification_types.h" |
| 10 #include "chrome/common/extensions/extension.h" | 10 #include "chrome/common/extensions/extension.h" |
| 11 #include "chrome/common/extensions/extension_icon_set.h" | 11 #include "chrome/common/extensions/extension_icon_set.h" |
| 12 #include "chrome/common/extensions/extension_resource.h" | 12 #include "chrome/common/extensions/extension_resource.h" |
| 13 #include "content/public/browser/notification_service.h" | 13 #include "content/public/browser/notification_service.h" |
| 14 #include "content/public/browser/notification_source.h" | 14 #include "content/public/browser/notification_source.h" |
| 15 #include "grit/generated_resources.h" | 15 #include "grit/generated_resources.h" |
| 16 #include "grit/theme_resources_standard.h" | 16 #include "grit/theme_resources.h" |
| 17 #include "ui/base/resource/resource_bundle.h" | 17 #include "ui/base/resource/resource_bundle.h" |
| 18 #include "ui/gfx/image/image.h" | 18 #include "ui/gfx/image/image.h" |
| 19 | 19 |
| 20 // Size of extension icon in top left of dialog. | 20 // Size of extension icon in top left of dialog. |
| 21 static const int kIconSize = 69; | 21 static const int kIconSize = 69; |
| 22 | 22 |
| 23 ExtensionUninstallDialog::ExtensionUninstallDialog( | 23 ExtensionUninstallDialog::ExtensionUninstallDialog( |
| 24 Browser* browser, | 24 Browser* browser, |
| 25 ExtensionUninstallDialog::Delegate* delegate) | 25 ExtensionUninstallDialog::Delegate* delegate) |
| 26 : browser_(browser), | 26 : browser_(browser), |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 DCHECK(type == chrome::NOTIFICATION_BROWSER_CLOSING); | 85 DCHECK(type == chrome::NOTIFICATION_BROWSER_CLOSING); |
| 86 | 86 |
| 87 browser_ = NULL; | 87 browser_ = NULL; |
| 88 if (tracker_.get()) { | 88 if (tracker_.get()) { |
| 89 // If we're waiting for the icon, stop doing so because we're not going to | 89 // If we're waiting for the icon, stop doing so because we're not going to |
| 90 // show the dialog. | 90 // show the dialog. |
| 91 tracker_.reset(); | 91 tracker_.reset(); |
| 92 delegate_->ExtensionUninstallCanceled(); | 92 delegate_->ExtensionUninstallCanceled(); |
| 93 } | 93 } |
| 94 } | 94 } |
| OLD | NEW |