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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/mac/scoped_nsobject.h" | 9 #include "base/mac/scoped_nsobject.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/threading/thread_task_runner_handle.h" |
11 #include "chrome/browser/importer/importer_lock_dialog.h" | 11 #include "chrome/browser/importer/importer_lock_dialog.h" |
12 #include "chrome/grit/chromium_strings.h" | 12 #include "chrome/grit/chromium_strings.h" |
13 #include "chrome/grit/generated_resources.h" | 13 #include "chrome/grit/generated_resources.h" |
14 #include "content/public/browser/user_metrics.h" | 14 #include "content/public/browser/user_metrics.h" |
15 #include "ui/base/l10n/l10n_util_mac.h" | 15 #include "ui/base/l10n/l10n_util_mac.h" |
16 | 16 |
17 using base::UserMetricsAction; | 17 using base::UserMetricsAction; |
18 | 18 |
19 namespace importer { | 19 namespace importer { |
20 | 20 |
21 void ShowImportLockDialog(gfx::NativeWindow parent, | 21 void ShowImportLockDialog(gfx::NativeWindow parent, |
22 const base::Callback<void(bool)>& callback) { | 22 const base::Callback<void(bool)>& callback) { |
23 base::scoped_nsobject<NSAlert> lock_alert([[NSAlert alloc] init]); | 23 base::scoped_nsobject<NSAlert> lock_alert([[NSAlert alloc] init]); |
24 [lock_alert addButtonWithTitle:l10n_util::GetNSStringWithFixup( | 24 [lock_alert addButtonWithTitle:l10n_util::GetNSStringWithFixup( |
25 IDS_IMPORTER_LOCK_OK)]; | 25 IDS_IMPORTER_LOCK_OK)]; |
26 [lock_alert addButtonWithTitle:l10n_util::GetNSStringWithFixup( | 26 [lock_alert addButtonWithTitle:l10n_util::GetNSStringWithFixup( |
27 IDS_IMPORTER_LOCK_CANCEL)]; | 27 IDS_IMPORTER_LOCK_CANCEL)]; |
28 [lock_alert setInformativeText:l10n_util::GetNSStringWithFixup( | 28 [lock_alert setInformativeText:l10n_util::GetNSStringWithFixup( |
29 IDS_IMPORTER_LOCK_TEXT)]; | 29 IDS_IMPORTER_LOCK_TEXT)]; |
30 [lock_alert setMessageText:l10n_util::GetNSStringWithFixup( | 30 [lock_alert setMessageText:l10n_util::GetNSStringWithFixup( |
31 IDS_IMPORTER_LOCK_TITLE)]; | 31 IDS_IMPORTER_LOCK_TITLE)]; |
32 | 32 |
33 base::MessageLoop::current()->PostTask( | 33 base::ThreadTaskRunnerHandle::Get()->PostTask( |
34 FROM_HERE, | 34 FROM_HERE, |
35 base::Bind(callback, [lock_alert runModal] == NSAlertFirstButtonReturn)); | 35 base::Bind(callback, [lock_alert runModal] == NSAlertFirstButtonReturn)); |
36 content::RecordAction(UserMetricsAction("ImportLockDialogCocoa_Shown")); | 36 content::RecordAction(UserMetricsAction("ImportLockDialogCocoa_Shown")); |
37 } | 37 } |
38 | 38 |
39 } // namespace importer | 39 } // namespace importer |
OLD | NEW |