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

Side by Side Diff: remoting/host/disconnect_window_mac.mm

Issue 13322003: Update the remaining references to sys_string_conversions.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698