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

Unified Diff: ui/gfx/render_text_mac.h

Issue 16917011: mac: Replace base::mac::ScopedCFTypeRef with base::ScopedCFTypeRef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: ui/gfx/render_text_mac.h
diff --git a/ui/gfx/render_text_mac.h b/ui/gfx/render_text_mac.h
index b89737b3e8f5dba8343406d439c20e884a5688ba..345fef0e98d5bbb67e6a062db3d6c48b66c3e64b 100644
--- a/ui/gfx/render_text_mac.h
+++ b/ui/gfx/render_text_mac.h
@@ -74,11 +74,11 @@ class RenderTextMac : public RenderText {
void ComputeRuns();
// The Core Text line of text. Created by |EnsureLayout()|.
- base::mac::ScopedCFTypeRef<CTLineRef> line_;
+ base::ScopedCFTypeRef<CTLineRef> line_;
// Array to hold CFAttributedString attributes that allows Core Text to hold
// weak references to them without leaking.
- base::mac::ScopedCFTypeRef<CFMutableArrayRef> attributes_;
+ base::ScopedCFTypeRef<CFMutableArrayRef> attributes_;
// Visual dimensions of the text. Computed by |EnsureLayout()|.
Size string_size_;

Powered by Google App Engine
This is Rietveld 408576698