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

Unified Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/DebugProperties.cs

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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: experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/DebugProperties.cs
diff --git a/experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/DebugProperties.cs b/experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/DebugProperties.cs
deleted file mode 100644
index 2d06cd2e3fc1b501a61656b16af01f93db2aa627..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/DebugProperties.cs
+++ /dev/null
@@ -1,102 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Drawing.Design;
-using System.Linq;
-using System.Runtime.InteropServices;
-using System.Text;
-using System.Windows.Forms.Design;
-using Microsoft.VisualStudio.Project;
-
-namespace Google.NaClVsx.ProjectSupport
-{
- [ComVisible(true), Guid("370263ED-D4DE-4d28-8323-45FD3C600789")]
- class DebugProperties : AutoSettingsPage
- {
- public DebugProperties() {
- Name = "Debug";
- }
-
- [Category("Launch")]
- [DisplayName("Hosting Process (chrome or sel_ldr)")]
- [ProjectProperty("DebugHost", true)]
- [Editor(typeof(FileNameEditor), typeof(UITypeEditor))]
- public string HostProgram
- {
- get { return hostProgram_; }
- set { hostProgram_ = value;
- IsDirty = true;}
- }
-
- [Category("Launch")]
- [DisplayName("Arguments")]
- [ProjectProperty("DebugArgs", true)]
- public string Args
- {
- get { return args_; }
- set { args_ = value; IsDirty = true; }
- }
-
- [Category("Launch")]
- [DisplayName("IRT (for sel_ldr)")]
- [ProjectProperty("IrtNexe", true)]
- public string IrtNexe
- {
- get { return irtNexe_; }
- set { irtNexe_ = value; IsDirty = true; }
- }
-
-
- [Category("ChromeUrl")]
- [DisplayName("Html for web application")]
- [ProjectProperty("HtmlPage", true)]
- public string HtmlPage
- {
- get { return htmlPage_; }
- set { htmlPage_ = value; IsDirty = true; }
- }
- [Category("ChromeUrl")]
- [DisplayName("Web server hostname")]
- [ProjectProperty("LaunchHostname", true)]
- public string LaunchHost
- {
- get { return launchHost_; }
- set { launchHost_ = value; IsDirty = true; }
- }
- [Category("ChromeUrl")]
- [DisplayName("Web server port")]
- [ProjectProperty("LaunchPort", true)]
- public string LaunchPort
- {
- get { return launchPort_; }
- set { launchPort_ = value; IsDirty = true; }
- }
-
- [Category("WebServer")]
- [DisplayName("Httpd Server")]
- [ProjectProperty("WebServer", true)]
- public string WebServerProgram
- {
- get { return webServerProgram_; }
- set { webServerProgram_ = value; IsDirty = true; }
- }
-
- [Category("WebServer")]
- [DisplayName("Httpd Server Arguments")]
- [ProjectProperty("WebServerArgs", true)]
- public string WebServerArgs
- {
- get { return webServerArgs_; }
- set { webServerArgs_ = value; IsDirty = true; }
- }
-
- private string hostProgram_;
- private string args_;
- private string htmlPage_;
- private string irtNexe_;
- private string launchHost_;
- private string launchPort_;
- private string webServerProgram_;
- private string webServerArgs_;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698