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 <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #import "remoting/host/disconnect_window_mac.h" | 7 #import "remoting/host/disconnect_window_mac.h" |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/sys_string_conversions.h" | 11 #include "base/strings/sys_string_conversions.h" |
12 #include "remoting/host/disconnect_window.h" | 12 #include "remoting/host/disconnect_window.h" |
13 #include "remoting/host/ui_strings.h" | 13 #include "remoting/host/ui_strings.h" |
14 | 14 |
15 @interface DisconnectWindowController() | 15 @interface DisconnectWindowController() |
16 - (BOOL)isRToL; | 16 - (BOOL)isRToL; |
17 - (void)Hide; | 17 - (void)Hide; |
18 @end | 18 @end |
19 | 19 |
20 namespace remoting { | 20 namespace remoting { |
21 | 21 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 path = [NSBezierPath bezierPath]; | 284 path = [NSBezierPath bezierPath]; |
285 [path moveToPoint:top]; | 285 [path moveToPoint:top]; |
286 [path lineToPoint:bottom]; | 286 [path lineToPoint:bottom]; |
287 [light setStroke]; | 287 [light setStroke]; |
288 [path stroke]; | 288 [path stroke]; |
289 | 289 |
290 [context setShouldAntialias:alias]; | 290 [context setShouldAntialias:alias]; |
291 } | 291 } |
292 | 292 |
293 @end | 293 @end |
OLD | NEW |