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

Unified Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs

Issue 10823267: NaCl VS Addin Crash Fix (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 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: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
diff --git a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
index 9ebae9653a089f5c1efb6ea8fa3c6a01b29c6b32..4268f5b16073a4760f14a8e4d73e8b8b4cf5ce23 100644
--- a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
+++ b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
@@ -169,14 +169,14 @@ namespace NativeClientVSAddIn
}
/// <summary>
- /// Gets or sets the full toolchain and platform name. Ex: win_x86_newlib
+ /// Gets or sets the toolchain name. Ex: newlib.
/// </summary>
- public string PlatformToolset
+ public string ToolchainName
{
get
{
- AssertValidPlatform();
- return GetProperty("ConfigurationGeneral", "PlatformToolset");
+ AssertNaCl();
+ return GetProperty("ConfigurationGeneral", "ToolchainName");
}
protected set

Powered by Google App Engine
This is Rietveld 408576698