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 #include "ui/gfx/canvas.h" | 5 #include "ui/gfx/canvas.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 81 |
82 void Canvas::DrawStringRectWithHalo(const base::string16& text, | 82 void Canvas::DrawStringRectWithHalo(const base::string16& text, |
83 const FontList& font_list, | 83 const FontList& font_list, |
84 SkColor text_color, | 84 SkColor text_color, |
85 SkColor halo_color, | 85 SkColor halo_color, |
86 const Rect& display_rect, | 86 const Rect& display_rect, |
87 int flags) { | 87 int flags) { |
88 } | 88 } |
89 | 89 |
90 } // namespace gfx | 90 } // namespace gfx |
OLD | NEW |