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

Side by Side Diff: base/gfx/point.cc

Issue 42011: Normalize end of file newlines in base/. All files end in a single newline. (Closed)
Patch Set: Revert changed to third_party. Created 11 years, 9 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
« no previous file with comments | « base/gfx/point.h ('k') | base/gfx/rect.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #include "base/gfx/point.h" 5 #include "base/gfx/point.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <windows.h> 8 #include <windows.h>
9 #endif 9 #endif
10 10
(...skipping 18 matching lines...) Expand all
29 #elif defined(OS_MACOSX) 29 #elif defined(OS_MACOSX)
30 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) { 30 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) {
31 } 31 }
32 32
33 CGPoint Point::ToCGPoint() const { 33 CGPoint Point::ToCGPoint() const {
34 return CGPointMake(x_, y_); 34 return CGPointMake(x_, y_);
35 } 35 }
36 #endif 36 #endif
37 37
38 } // namespace gfx 38 } // namespace gfx
39
OLDNEW
« no previous file with comments | « base/gfx/point.h ('k') | base/gfx/rect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698