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" | 18 #include "ui/base/resource/resource_bundle.h" |
19 #include "ui/gfx/image/image_skia_util_mac.h" | 19 #include "ui/gfx/image/image_skia_util_mac.h" |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 // The Cocoa implementation of ExtensionUninstallDialog. This has a less | 23 // The Cocoa implementation of ExtensionUninstallDialog. This has a less |
24 // complex life cycle than the Views and GTK implementations because the | 24 // complex life cycle than the Views and GTK implementations because the |
25 // dialog blocks the page from navigating away and destroying the dialog, | 25 // dialog blocks the page from navigating away and destroying the dialog, |
26 // so there's no way for the dialog to outlive its delegate. | 26 // so there's no way for the dialog to outlive its delegate. |
27 class ExtensionUninstallDialogCocoa | 27 class ExtensionUninstallDialogCocoa |
28 : public extensions::ExtensionUninstallDialog { | 28 : public extensions::ExtensionUninstallDialog { |
29 public: | 29 public: |
30 ExtensionUninstallDialogCocoa( | 30 ExtensionUninstallDialogCocoa(Profile* profile, |
31 Profile* profile, | 31 Browser* browser, |
32 Browser* browser, | 32 gfx::NativeWindow parent, |
33 Delegate* delegate); | 33 Delegate* delegate); |
34 virtual ~ExtensionUninstallDialogCocoa() OVERRIDE; | 34 virtual ~ExtensionUninstallDialogCocoa() OVERRIDE; |
35 | 35 |
36 private: | 36 private: |
37 virtual void Show() OVERRIDE; | 37 virtual void Show() OVERRIDE; |
38 }; | 38 }; |
39 | 39 |
40 ExtensionUninstallDialogCocoa::ExtensionUninstallDialogCocoa( | 40 ExtensionUninstallDialogCocoa::ExtensionUninstallDialogCocoa( |
41 Profile* profile, | 41 Profile* profile, |
42 Browser* browser, | 42 Browser* browser, |
| 43 gfx::NativeWindow parent, |
43 extensions::ExtensionUninstallDialog::Delegate* delegate) | 44 extensions::ExtensionUninstallDialog::Delegate* delegate) |
44 : extensions::ExtensionUninstallDialog(profile, browser, delegate) { | 45 : extensions::ExtensionUninstallDialog(profile, browser, parent, delegate) { |
45 } | 46 } |
46 | 47 |
47 ExtensionUninstallDialogCocoa::~ExtensionUninstallDialogCocoa() {} | 48 ExtensionUninstallDialogCocoa::~ExtensionUninstallDialogCocoa() {} |
48 | 49 |
49 void ExtensionUninstallDialogCocoa::Show() { | 50 void ExtensionUninstallDialogCocoa::Show() { |
50 NSAlert* alert = [[[NSAlert alloc] init] autorelease]; | 51 NSAlert* alert = [[[NSAlert alloc] init] autorelease]; |
51 | 52 |
52 NSButton* continueButton = [alert addButtonWithTitle:l10n_util::GetNSString( | 53 NSButton* continueButton = [alert addButtonWithTitle:l10n_util::GetNSString( |
53 IDS_EXTENSION_PROMPT_UNINSTALL_BUTTON)]; | 54 IDS_EXTENSION_PROMPT_UNINSTALL_BUTTON)]; |
54 NSButton* cancelButton = [alert addButtonWithTitle:l10n_util::GetNSString( | 55 NSButton* cancelButton = [alert addButtonWithTitle:l10n_util::GetNSString( |
(...skipping 14 matching lines...) Expand all Loading... |
69 delegate_->ExtensionUninstallCanceled(); | 70 delegate_->ExtensionUninstallCanceled(); |
70 } | 71 } |
71 | 72 |
72 } // namespace | 73 } // namespace |
73 | 74 |
74 // static | 75 // static |
75 extensions::ExtensionUninstallDialog* | 76 extensions::ExtensionUninstallDialog* |
76 extensions::ExtensionUninstallDialog::Create(Profile* profile, | 77 extensions::ExtensionUninstallDialog::Create(Profile* profile, |
77 Browser* browser, | 78 Browser* browser, |
78 Delegate* delegate) { | 79 Delegate* delegate) { |
79 return new ExtensionUninstallDialogCocoa(profile, browser, delegate); | 80 return new ExtensionUninstallDialogCocoa(profile, browser, NULL, delegate); |
80 } | 81 } |
| 82 |
| 83 // static |
| 84 extensions::ExtensionUninstallDialog* |
| 85 extensions::ExtensionUninstallDialog::CreateModal(Profile* profile, |
| 86 gfx::NativeWindow parent, |
| 87 Delegate* delegate) { |
| 88 return new ExtensionUninstallDialogCocoa(profile, NULL, parent, delegate); |
| 89 } |
OLD | NEW |