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

Unified Diff: Source/platform/fonts/FixedPitchFontType.h

Issue 342883004: Using Enum in place of bool for better code readability (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comment fixes Created 6 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: Source/platform/fonts/FixedPitchFontType.h
diff --git a/Source/platform/fonts/FixedPitchFontType.h b/Source/platform/fonts/FixedPitchFontType.h
new file mode 100644
index 0000000000000000000000000000000000000000..4343d3d30babcb12260f9767e98031f958781c48
--- /dev/null
+++ b/Source/platform/fonts/FixedPitchFontType.h
@@ -0,0 +1,17 @@
+// Copyright 2014 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 FixedPitchFontType_h
+#define FixedPitchFontType_h
+
+namespace WebCore {
+
+enum FixedPitchFontType {
+ FixedPitchFont,
+ NonFixedPitchFont
+};
+
+}
+
+#endif // GenericFamilyType_h

Powered by Google App Engine
This is Rietveld 408576698