- add sources.
[platform/framework/web/crosswalk.git] / src / tools / stats_viewer / program.cs
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.\r
2 // Use of this source code is governed by a BSD-style license that can be\r
3 // found in the LICENSE file.\r
4 \r
5 using System;\r
6 using System.Windows.Forms;\r
7 \r
8 namespace StatsViewer\r
9 {\r
10   static class Program\r
11   {\r
12     /// <summary>\r
13     /// The main entry point for the application.\r
14     /// </summary>\r
15     [STAThread]\r
16     static void Main()\r
17     {\r
18       Application.EnableVisualStyles();\r
19       Application.SetCompatibleTextRenderingDefault(false);\r
20       Application.Run(new StatsViewer());\r
21     }\r
22   }\r
23 }\r