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

Unified Diff: ui/gfx/platform_font_mac.h

Issue 854713003: More old files deletion. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix tryjobs? Created 5 years, 11 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
« no previous file with comments | « ui/gfx/platform_font_ios.mm ('k') | ui/gfx/platform_font_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/platform_font_mac.h
diff --git a/ui/gfx/platform_font_mac.h b/ui/gfx/platform_font_mac.h
deleted file mode 100644
index aa85f82cb97002f98e615f913e98938166863cac..0000000000000000000000000000000000000000
--- a/ui/gfx/platform_font_mac.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_GFX_PLATFORM_FONT_MAC_H_
-#define UI_GFX_PLATFORM_FONT_MAC_H_
-
-#include "base/compiler_specific.h"
-#include "base/mac/scoped_nsobject.h"
-#include "ui/gfx/platform_font.h"
-
-namespace gfx {
-
-class PlatformFontMac : public PlatformFont {
- public:
- PlatformFontMac();
- explicit PlatformFontMac(NativeFont native_font);
- PlatformFontMac(const std::string& font_name,
- int font_size);
-
- // Overridden from PlatformFont:
- Font DeriveFont(int size_delta, int style) const override;
- int GetHeight() const override;
- int GetBaseline() const override;
- int GetCapHeight() const override;
- int GetExpectedTextWidth(int length) const override;
- int GetStyle() const override;
- std::string GetFontName() const override;
- std::string GetActualFontNameForTesting() const override;
- int GetFontSize() const override;
- const FontRenderParams& GetFontRenderParams() const override;
- NativeFont GetNativeFont() const override;
-
- private:
- PlatformFontMac(const std::string& font_name, int font_size, int font_style);
- ~PlatformFontMac() override;
-
- // Calculates and caches the font metrics.
- void CalculateMetrics();
-
- // The NSFont instance for this object. If this object was constructed from an
- // NSFont instance, this holds that NSFont instance. Otherwise this NSFont
- // instance is constructed from the name, size, and style, and if there is no
- // active font that matched those criteria, this object may be nil.
- base::scoped_nsobject<NSFont> native_font_;
-
- // The name/size/style trio that specify the font. Initialized in the
- // constructors.
- std::string font_name_; // Corresponds to -[NSFont fontFamily].
- int font_size_;
- int font_style_;
-
- // Cached metrics, generated in CalculateMetrics().
- int height_;
- int ascent_;
- int cap_height_;
- int average_width_;
-
- DISALLOW_COPY_AND_ASSIGN(PlatformFontMac);
-};
-
-} // namespace gfx
-
-#endif // UI_GFX_PLATFORM_FONT_MAC_H_
« no previous file with comments | « ui/gfx/platform_font_ios.mm ('k') | ui/gfx/platform_font_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698