Index: tools/win/ChromeDebug/ChromeDebug/Guids.cs |
diff --git a/tools/win/ChromeDebug/ChromeDebug/Guids.cs b/tools/win/ChromeDebug/ChromeDebug/Guids.cs |
new file mode 100644 |
index 0000000000000000000000000000000000000000..52064b6e753a4464403aa8c5673c7110cef12891 |
--- /dev/null |
+++ b/tools/win/ChromeDebug/ChromeDebug/Guids.cs |
@@ -0,0 +1,12 @@ |
+// Guids.cs |
+// MUST match guids.h |
+using System; |
+ |
+namespace ChromeDebug { |
+ static class GuidList { |
+ public const string guidChromeDebugPkgString = "7de8bbab-82c7-4871-b82c-4d5d44a3979d"; |
+ public const string guidChromeDebugCmdSetString = "6608d840-ce6c-45ab-b856-eb0a0b471ff1"; |
+ |
+ public static readonly Guid guidChromeDebugCmdSet = new Guid(guidChromeDebugCmdSetString); |
+ }; |
+} |