| 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 #import "remoting/host/disconnect_window_mac.h" | 5 #import "remoting/host/disconnect_window_mac.h" |
| 6 | 6 |
| 7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 DisconnectWindowController* window_controller_; | 41 DisconnectWindowController* window_controller_; |
| 42 | 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(DisconnectWindowMac); | 43 DISALLOW_COPY_AND_ASSIGN(DisconnectWindowMac); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 DisconnectWindowMac::DisconnectWindowMac() | 46 DisconnectWindowMac::DisconnectWindowMac() |
| 47 : window_controller_(nil) { | 47 : window_controller_(nil) { |
| 48 } | 48 } |
| 49 | 49 |
| 50 DisconnectWindowMac::~DisconnectWindowMac() { | 50 DisconnectWindowMac::~DisconnectWindowMac() { |
| 51 DCHECK(CalledOnValidThread()); | 51 DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); |
| 52 | 52 |
| 53 // DisconnectWindowController is responsible for releasing itself in its | 53 // DisconnectWindowController is responsible for releasing itself in its |
| 54 // windowWillClose: method. | 54 // windowWillClose: method. |
| 55 [window_controller_ Hide]; | 55 [window_controller_ Hide]; |
| 56 window_controller_ = nil; | 56 window_controller_ = nil; |
| 57 } | 57 } |
| 58 | 58 |
| 59 void DisconnectWindowMac::Start( | 59 void DisconnectWindowMac::Start( |
| 60 const base::WeakPtr<ClientSessionControl>& client_session_control) { | 60 const base::WeakPtr<ClientSessionControl>& client_session_control) { |
| 61 DCHECK(CalledOnValidThread()); | 61 DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); |
| 62 DCHECK(client_session_control); | 62 DCHECK(client_session_control); |
| 63 DCHECK(window_controller_ == nil); | 63 DCHECK(window_controller_ == nil); |
| 64 | 64 |
| 65 // Create the window. | 65 // Create the window. |
| 66 base::Closure disconnect_callback = | 66 base::Closure disconnect_callback = |
| 67 base::Bind(&ClientSessionControl::DisconnectSession, | 67 base::Bind(&ClientSessionControl::DisconnectSession, |
| 68 client_session_control, protocol::OK); | 68 client_session_control, protocol::OK); |
| 69 std::string client_jid = client_session_control->client_jid(); | 69 std::string client_jid = client_session_control->client_jid(); |
| 70 std::string username = client_jid.substr(0, client_jid.find('/')); | 70 std::string username = client_jid.substr(0, client_jid.find('/')); |
| 71 window_controller_ = | 71 window_controller_ = |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 path = [NSBezierPath bezierPath]; | 285 path = [NSBezierPath bezierPath]; |
| 286 [path moveToPoint:top]; | 286 [path moveToPoint:top]; |
| 287 [path lineToPoint:bottom]; | 287 [path lineToPoint:bottom]; |
| 288 [light setStroke]; | 288 [light setStroke]; |
| 289 [path stroke]; | 289 [path stroke]; |
| 290 | 290 |
| 291 [context setShouldAntialias:alias]; | 291 [context setShouldAntialias:alias]; |
| 292 } | 292 } |
| 293 | 293 |
| 294 @end | 294 @end |
| OLD | NEW |