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

Unified Diff: visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs

Issue 573823002: [VS Addin] Fix several issues with debugging PPAPI plugins (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/Strings.Designer.cs ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs
diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs
index 03728ac4a86c10aec690387c57ea294de1b5c5db..425197afbdcdf96b2dd78a965e984d02e1bfac49 100644
--- a/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs
+++ b/visual_studio/NativeClientVSAddIn/UnitTests/ProjectSettingsTest.cs
@@ -307,8 +307,8 @@ namespace UnitTests
string propName = "LocalDebuggerCommandArguments";
string dataDir = "--user-data-dir=\"$(ProjectDir)/chrome_data\"";
- string address = "localhost:$(NaClWebServerPort)";
- string targetFlag = "--register-pepper-plugins=\"$(TargetPath)\";application/x-nacl";
+ string address = "http://localhost:$(NaClWebServerPort)";
+ string targetFlag = "--register-pepper-plugins=\"$(TargetPath)\";application/x-ppapi";
string debugChildrenFlag = "--wait-for-debugger-children";
AllConfigsAssertPropertyContains(page, propName, dataDir, true);
AllConfigsAssertPropertyContains(page, propName, address, true);
@@ -392,7 +392,7 @@ namespace UnitTests
string propName = "LocalDebuggerCommandArguments";
string dataDir = "--user-data-dir=\"$(ProjectDir)/chrome_data\"";
- string address = "localhost:$(NaClWebServerPort)";
+ string address = "http://localhost:$(NaClWebServerPort)";
string naclFlag = "--enable-nacl";
string naclDebugFlag = "--enable-nacl-debug";
string noSandBoxFlag = "--no-sandbox";
« no previous file with comments | « visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/Strings.Designer.cs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698