summaryrefslogtreecommitdiffstats
path: root/chromium/tools/stats_viewer/program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/stats_viewer/program.cs')
-rw-r--r--chromium/tools/stats_viewer/program.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/chromium/tools/stats_viewer/program.cs b/chromium/tools/stats_viewer/program.cs
deleted file mode 100644
index d6a2b928624..00000000000
--- a/chromium/tools/stats_viewer/program.cs
+++ /dev/null
@@ -1,23 +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.
-
-using System;
-using System.Windows.Forms;
-
-namespace StatsViewer
-{
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new StatsViewer());
- }
- }
-}