| 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/extensions/extension_uninstall_dialog.h" | 5 #include "chrome/browser/extensions/extension_uninstall_dialog.h" |
| 6 | 6 |
| 7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/strings/sys_string_conversions.h" | 11 #include "base/strings/sys_string_conversions.h" |
| 12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
| 13 #include "extensions/common/extension.h" | 13 #include "extensions/common/extension.h" |
| 14 #include "grit/chromium_strings.h" | 14 #include "grit/chromium_strings.h" |
| 15 #include "grit/generated_resources.h" | 15 #include "grit/generated_resources.h" |
| 16 #include "skia/ext/skia_utils_mac.h" | 16 #include "skia/ext/skia_utils_mac.h" |
| 17 #include "ui/base/l10n/l10n_util_mac.h" | 17 #include "ui/base/l10n/l10n_util_mac.h" |
| 18 #include "ui/base/resource/resource_bundle.h" | |
| 19 #include "ui/gfx/image/image_skia_util_mac.h" | 18 #include "ui/gfx/image/image_skia_util_mac.h" |
| 20 | 19 |
| 21 namespace { | 20 namespace { |
| 22 | 21 |
| 23 // The Cocoa implementation of ExtensionUninstallDialog. This has a less | 22 // The Cocoa implementation of ExtensionUninstallDialog. This has a less |
| 24 // complex life cycle than the Views and GTK implementations because the | 23 // complex life cycle than the Views and GTK implementations because the |
| 25 // dialog blocks the page from navigating away and destroying the dialog, | 24 // dialog blocks the page from navigating away and destroying the dialog, |
| 26 // so there's no way for the dialog to outlive its delegate. | 25 // so there's no way for the dialog to outlive its delegate. |
| 27 class ExtensionUninstallDialogCocoa | 26 class ExtensionUninstallDialogCocoa |
| 28 : public extensions::ExtensionUninstallDialog { | 27 : public extensions::ExtensionUninstallDialog { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 69 |
| 71 } // namespace | 70 } // namespace |
| 72 | 71 |
| 73 // static | 72 // static |
| 74 extensions::ExtensionUninstallDialog* | 73 extensions::ExtensionUninstallDialog* |
| 75 extensions::ExtensionUninstallDialog::Create(Profile* profile, | 74 extensions::ExtensionUninstallDialog::Create(Profile* profile, |
| 76 gfx::NativeWindow parent, | 75 gfx::NativeWindow parent, |
| 77 Delegate* delegate) { | 76 Delegate* delegate) { |
| 78 return new ExtensionUninstallDialogCocoa(profile, parent, delegate); | 77 return new ExtensionUninstallDialogCocoa(profile, parent, delegate); |
| 79 } | 78 } |
| OLD | NEW |