Home | History | Annotate | Download | only in stats_viewer
      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.
      4 
      5 using System;
      6 using System.Windows.Forms;
      7 
      8 namespace StatsViewer
      9 {
     10   static class Program
     11   {
     12     /// <summary>
     13     /// The main entry point for the application.
     14     /// </summary>
     15     [STAThread]
     16     static void Main()
     17     {
     18       Application.EnableVisualStyles();
     19       Application.SetCompatibleTextRenderingDefault(false);
     20       Application.Run(new StatsViewer());
     21     }
     22   }
     23 }
     24