Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: chrome/browser/ui/cocoa/one_click_signin_dialog_controller.mm

Issue 2132593002: Remove remaining calls to deprecated MessageLoop methods on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: h264_vt_encoder_unittest.cc Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "chrome/browser/ui/cocoa/one_click_signin_dialog_controller.h" 5 #import "chrome/browser/ui/cocoa/one_click_signin_dialog_controller.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/threading/thread_task_runner_handle.h"
9 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sh eet.h" 9 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sh eet.h"
10 #include "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_w indow.h" 10 #include "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_w indow.h"
11 #import "chrome/browser/ui/cocoa/one_click_signin_view_controller.h" 11 #import "chrome/browser/ui/cocoa/one_click_signin_view_controller.h"
12 12
13 OneClickSigninDialogController::OneClickSigninDialogController( 13 OneClickSigninDialogController::OneClickSigninDialogController(
14 content::WebContents* web_contents, 14 content::WebContents* web_contents,
15 const BrowserWindow::StartSyncCallback& sync_callback, 15 const BrowserWindow::StartSyncCallback& sync_callback,
16 const base::string16& email) { 16 const base::string16& email) {
17 base::Closure close_callback = base::Bind( 17 base::Closure close_callback = base::Bind(
18 &OneClickSigninDialogController::PerformClose, base::Unretained(this)); 18 &OneClickSigninDialogController::PerformClose, base::Unretained(this));
(...skipping 14 matching lines...) Expand all
33 constrained_window_ = 33 constrained_window_ =
34 CreateAndShowWebModalDialogMac(this, web_contents, sheet); 34 CreateAndShowWebModalDialogMac(this, web_contents, sheet);
35 } 35 }
36 36
37 OneClickSigninDialogController::~OneClickSigninDialogController() { 37 OneClickSigninDialogController::~OneClickSigninDialogController() {
38 } 38 }
39 39
40 void OneClickSigninDialogController::OnConstrainedWindowClosed( 40 void OneClickSigninDialogController::OnConstrainedWindowClosed(
41 ConstrainedWindowMac* window) { 41 ConstrainedWindowMac* window) {
42 [view_controller_ viewWillClose]; 42 [view_controller_ viewWillClose];
43 base::MessageLoop::current()->DeleteSoon(FROM_HERE, this); 43 base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, this);
44 } 44 }
45 45
46 void OneClickSigninDialogController::PerformClose() { 46 void OneClickSigninDialogController::PerformClose() {
47 constrained_window_->CloseWebContentsModalDialog(); 47 constrained_window_->CloseWebContentsModalDialog();
48 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698