gn format //base
[chromium-blink-merge.git] / tools / stats_viewer / program.cs
blobd6a2b92862473c1e57d3ba2b390eee89b82766aa
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
3 // found in the LICENSE file.
5 using System;
6 using System.Windows.Forms;
8 namespace StatsViewer
10 static class Program
12 /// <summary>
13 /// The main entry point for the application.
14 /// </summary>
15 [STAThread]
16 static void Main()
18 Application.EnableVisualStyles();
19 Application.SetCompatibleTextRenderingDefault(false);
20 Application.Run(new StatsViewer());